This commit is contained in:
Alberto Basalo 2015-11-12 13:35:31 +01:00
Родитель 6734fa27f4
Коммит 4bd640a167
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,7 @@
(function () {
/** original */ /** original */
angular.module('cashFlow', ['ngResource', 'ngCookies', 'ui.router', 'registro', 'lista', 'total', 'nuevo', 'abComponentes', 'abMenuNavegacion']); angular.module('cashFlow', ['ngResource','seguridad', 'ngCookies', 'ui.router', 'registro', 'lista', 'total', 'nuevo', 'abComponentes', 'abMenuNavegacion']);
/** estructura modular jerárquica */ /** estructura modular jerárquica */
angular.module('cashFlow', ['terceros', 'componentes', 'estados']); angular.module('cashFlow', ['terceros', 'componentes', 'estados']);
@ -8,3 +10,5 @@ angular.module('componentes', 'abComponentes', 'abMenuNavegacion']);
angular.module('estados', ['registro', 'lista', 'total', 'nuevo']); angular.module('estados', ['registro', 'lista', 'total', 'nuevo']);
/** módulos para cada componente */ /** módulos para cada componente */
}());

Просмотреть файл

@ -1,6 +1,6 @@
(function () { (function () {
angular.module('cashFlow').config(configuradorInterceptores); angular.module('seguridad').config(configuradorInterceptores);
function configuradorInterceptores($httpProvider) { function configuradorInterceptores($httpProvider) {
/** la configuración de $http sirve para $resource */ /** la configuración de $http sirve para $resource */