Merge "Cleaning up module dependency management tree"

This commit is contained in:
Jenkins 2015-10-01 21:44:51 +00:00 committed by Gerrit Code Review
commit dc9a456996
4 changed files with 5 additions and 4 deletions

View File

@ -33,6 +33,6 @@
*
*/
angular
.module('MagicSearch', ['ui.bootstrap']);
.module('MagicSearch', []);
})();

View File

@ -29,9 +29,7 @@
* module and jQuery (for table drawer slide animation in IE9) to be installed.
*/
angular
.module('horizon.framework.widgets.table', [
'smart-table', 'lrDragNDrop'
])
.module('horizon.framework.widgets.table', [])
/**
* @ngdoc parameters

View File

@ -251,6 +251,7 @@
var $scope, $compile, $element;
beforeEach(module('templates'));
beforeEach(module('smart-table'));
beforeEach(module('horizon.framework'));
beforeEach(inject(function ($injector) {

View File

@ -23,8 +23,10 @@
*/
var libraryModules = [
'gettext',
'lrDragNDrop',
'ngCookies',
'ngSanitize',
'smart-table',
'ui.bootstrap'
];