25 lines
413 B
JavaScript
Executable File
25 lines
413 B
JavaScript
Executable File
/**
|
|
* declare 'clip-two' module with dependencies
|
|
*/
|
|
'use strict';
|
|
angular.module("clip-two", [
|
|
// 'ngAnimate',
|
|
'ngCookies',
|
|
'ngStorage',
|
|
'ngSanitize',
|
|
'ngTouch',
|
|
'ui.router',
|
|
'ui.bootstrap',
|
|
'oc.lazyLoad',
|
|
'cfp.loadingBar',
|
|
'ncy-angular-breadcrumb',
|
|
'duScroll',
|
|
'pascalprecht.translate',
|
|
'angular-md5',
|
|
'ipCookie',
|
|
'angularUtils.directives.dirPagination',
|
|
'htmlToPdfSave',
|
|
'ui.select2',
|
|
]);
|
|
|