kongadmin
Version:
Kong admin GUI
24 lines (20 loc) • 494 B
JavaScript
(function() {
'use strict';
angular.module('frontend.core.directives')
.directive('kongaLoader', function directive() {
return {
restrict: 'E',
scope: {
message: '@'
},
replace: true,
templateUrl: 'js/app/core/directives/partials/konga-loader.html',
controller: [
'$scope','$rootScope',
function controller($scope,$rootScope) {
}
]
};
})
;
}());