blob: 9a06055bb941f6e0625002cc5d7e9ef033364212 [file] [log] [blame]
Michael Davis428375e2017-08-01 15:48:34 -05001window.angular && (function (angular) {
2 'use strict';
3
4 angular
5 .module('app.common.directives')
6 .directive('loader', function () {
7 return {
8 'restrict': 'E',
9 'templateUrl': 'common/directives/loader.html',
10 scope: {
11 loading: '='
12 }
13 };
14 });
15
16})(window.angular);