blob: 9a06055bb941f6e0625002cc5d7e9ef033364212 [file] [log] [blame]
window.angular && (function (angular) {
'use strict';
angular
.module('app.common.directives')
.directive('loader', function () {
return {
'restrict': 'E',
'templateUrl': 'common/directives/loader.html',
scope: {
loading: '='
}
};
});
})(window.angular);