Michael Davis | 428375e | 2017-08-01 15:48:34 -0500 | [diff] [blame] | 1 | window.angular && (function (angular) { |
2 | 'use strict'; | ||||
3 | |||||
4 | angular | ||||
5 | .module('app.common.directives') | ||||
6 | .directive('loader', function () { | ||||
7 | return { | ||||
8 | 'restrict': 'E', | ||||
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 9 | 'template': require('./loader.html'), |
Michael Davis | 428375e | 2017-08-01 15:48:34 -0500 | [diff] [blame] | 10 | scope: { |
11 | loading: '=' | ||||
12 | } | ||||
13 | }; | ||||
14 | }); | ||||
15 | |||||
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 16 | })(window.angular); |