UNPKG

kongadmin

Version:
24 lines (20 loc) 494 B
(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) { } ] }; }) ; }());