1 2 3 4 5 6 7 8 9 10 11
window.angular && (function(angular) { 'use strict'; angular.module('app.common.directives').directive('loader', function() { return { 'restrict': 'E', 'template': require('./loader.html'), scope: {loading: '='} }; }); })(window.angular);