blob: 8edc1282f9c1bf6c3c754e6d1959be6e33cea61b [file] [log] [blame]
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);