blob: b37a898401b61e2e793d8db2b1747072005071ce [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);