rsanchez
2017-04-10 8d99c88af55041ff06e6b9372b6b1f66220bed38
securis/src/main/webapp/systemjs.config.js
....@@ -4,7 +4,7 @@
44 */
55 (function (global) {
66
7
- var ANGULAR_LIBS = ['core', 'http', 'common', 'compiler', 'material', 'flex-layout', //
7
+ var ANGULAR_LIBS = ['core', 'http', 'common', 'compiler', 'material', 'flex-layout', 'animations', //
88 'router', 'forms', 'platform-browser', 'platform-browser-dynamic', 'common'];
99 var COVALENT_LIBS = ['core', 'http', 'dynamic-forms'];
1010 var mapping = {
....@@ -12,6 +12,8 @@
1212 main: 'src/main.js',
1313 'app': 'src/app',
1414 'environments': 'src/environments',
15
+ '@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
16
+ '@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
1517
1618 // other libraries
1719 'rxjs': 'npm:rxjs',
....@@ -22,7 +24,7 @@
2224 }
2325
2426 ANGULAR_LIBS.forEach(function (libName) {
25
- mapping['@angular/' + libName] = 'npm:@angular/' + libName + '/bundles/' + libName + '.umd.js';
27
+ mapping['@angular/' + libName] = 'npm:@angular/' + libName + '/bundles/' + libName + '.umd.js';
2628 });
2729
2830 COVALENT_LIBS.forEach(function (libName) {