From 8d99c88af55041ff06e6b9372b6b1f66220bed38 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Mon, 10 Apr 2017 16:08:58 +0000
Subject: [PATCH] #3529 feature - Added applications to user profile and upgrade to angular4
---
securis/src/main/webapp/systemjs.config.js | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/securis/src/main/webapp/systemjs.config.js b/securis/src/main/webapp/systemjs.config.js
index 476858d..4cb7dfc 100644
--- a/securis/src/main/webapp/systemjs.config.js
+++ b/securis/src/main/webapp/systemjs.config.js
@@ -4,7 +4,7 @@
*/
(function (global) {
- var ANGULAR_LIBS = ['core', 'http', 'common', 'compiler', 'material', 'flex-layout', //
+ var ANGULAR_LIBS = ['core', 'http', 'common', 'compiler', 'material', 'flex-layout', 'animations', //
'router', 'forms', 'platform-browser', 'platform-browser-dynamic', 'common'];
var COVALENT_LIBS = ['core', 'http', 'dynamic-forms'];
var mapping = {
@@ -12,6 +12,8 @@
main: 'src/main.js',
'app': 'src/app',
'environments': 'src/environments',
+ '@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
+ '@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
@@ -22,7 +24,7 @@
}
ANGULAR_LIBS.forEach(function (libName) {
- mapping['@angular/' + libName] = 'npm:@angular/' + libName + '/bundles/' + libName + '.umd.js';
+ mapping['@angular/' + libName] = 'npm:@angular/' + libName + '/bundles/' + libName + '.umd.js';
});
COVALENT_LIBS.forEach(function (libName) {
--
Gitblit v1.3.2