kongadmin
Version:
Kong admin GUI
36 lines (34 loc) • 912 B
JavaScript
/**
* Generic models angular module initialize. This module contains all 3rd party dependencies that application needs to
* actually work.
*
* Also note that this module have to be loaded before any other application modules that have dependencies to these
* "core" modules.
*/
(function() {
'use strict';
angular.module('frontend.core.dependencies', [
'angular-loading-bar',
'ngAnimate',
'ngSanitize',
'infinite-scroll',
'ngBootbox',
'ngStorage',
'ui.router',
'ui.bootstrap',
'ui.bootstrap.showErrors',
'ui.utils',
'angularMoment',
'toastr',
'xeditable',
'sails.io',
'angularUtils.directives.uiBreadcrumbs',
'angularUtils.directives.dirPagination',
'yaru22.jsonHuman',
'cfp.loadingBar',
'frapontillo.bootstrap-switch',
'ngFileUpload',
'base64',
'angular.vertilize'
]);
}());