UNPKG

acha-framework

Version:

is a modular framework on both client (angular.js) and server (node.js) side, it provides security, orm, ioc, obfuscation and ...

20 lines 637 B
(function ($, angular, underscore, window, document, undefined) { 'use strict'; angular.module('frontend.directives').directive('panelWaiting', [function () { return { restrict: 'E', replace: true, scope: {}, templateUrl: '/templates/framework/panel/directives/panel-waiting/template.html', link: function (scope, element, attr) { scope.vm = {}; scope.vm.init = function () { scope.vm.bind(); }; scope.vm.bind = function () { }; scope.vm.init(); } }; }]); }(jQuery, angular, _, window, document));