Remove angular-ui-bootstrap dependency.
This commit is contained in:
@ -22,7 +22,6 @@ var angular = require('angular');
|
||||
|
||||
var ngResource = require('angular-resource'),
|
||||
ngMessages = require('angular-messages'),
|
||||
ngUiBootstrap = require('angular-ui-bootstrap'),
|
||||
ngUiNotification = require('angular-ui-notification'),
|
||||
ngStrap = require('angular-strap');
|
||||
|
||||
@ -33,7 +32,6 @@ var AccountController = require('./account.controller.js');
|
||||
module.exports = angular.module('accountant.accounts', [
|
||||
ngResource,
|
||||
ngMessages,
|
||||
ngUiBootstrap,
|
||||
ngUiNotification,
|
||||
ngStrap,
|
||||
])
|
||||
|
@ -21,8 +21,7 @@
|
||||
var angular = require('angular');
|
||||
|
||||
var ngStorage = require('meanie-angular-storage'),
|
||||
ngHttpAuth = require('angular-http-auth'),
|
||||
ngUiBootstrap = require('angular-ui-bootstrap');
|
||||
ngHttpAuth = require('angular-http-auth');
|
||||
|
||||
// Note: ngHttpAuth seems to have no module.exports.
|
||||
ngHttpAuth = 'http-auth-interceptor';
|
||||
@ -33,8 +32,7 @@ var LoginController = require('./login.controller');
|
||||
|
||||
module.exports = angular.module('accountant.login', [
|
||||
ngHttpAuth,
|
||||
ngStorage,
|
||||
ngUiBootstrap
|
||||
ngStorage
|
||||
])
|
||||
|
||||
.service('LoginService', LoginService)
|
||||
|
@ -24,13 +24,11 @@ var scheduleFormTmpl = require('./schedule.form.tmpl.html'),
|
||||
scheduleDeleteTmpl = require('./schedule.delete.tmpl.html');
|
||||
|
||||
var ngMessages = require('angular-messages'),
|
||||
ngUiBootstrap = require('angular-ui-bootstrap'),
|
||||
ngUiNotification = require('angular-ui-notification'),
|
||||
ngStrap = require('angular-strap');
|
||||
|
||||
module.exports = angular.module('accountant.scheduler', [
|
||||
ngMessages,
|
||||
ngUiBootstrap,
|
||||
ngUiNotification,
|
||||
ngStrap
|
||||
])
|
||||
|
Reference in New Issue
Block a user