blob: 887cc40f4992721327b6ab70b5cfb0eaf235e808 [file] [log] [blame]
Andrew Geisslerba5e3f32018-05-24 10:58:00 -07001window.angular && (function(angular) {
2 'use strict';
Michael Davis428375e2017-08-01 15:48:34 -05003
Andrew Geisslerd27bb132018-05-24 11:07:27 -07004 angular.module('app.common.directives').directive('loader', function() {
5 return {
6 'restrict': 'E',
7 'template': require('./loader.html'),
8 scope: {loading: '='}
9 };
10 });
Ed Tanousbbcf6702017-10-06 13:53:06 -070011})(window.angular);