We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7a050f commit b959835Copy full SHA for b959835
1 file changed
dynamicRouting.js
@@ -14,7 +14,7 @@
14
var complexViews = {};
15
16
this.registerDynamicRoutes = function(routes) {
17
- var dynamicRoutes = routes || foundationRoutes;
+ var dynamicRoutes = routes || BaseAppsRoutes;
18
19
angular.forEach(dynamicRoutes, function(page) {
20
if (page.hasComposed) {
@@ -145,9 +145,9 @@
145
146
function DynamicRoutingConfig(BaseAppsStateProvider) {
147
// Don't error out if Front Router is not being used
148
- var foundationRoutes = window.foundationRoutes || [];
+ var BaseAppsRoutes = window.BaseAppsRoutes || [];
149
150
- BaseAppsStateProvider.registerDynamicRoutes(foundationRoutes);
+ BaseAppsStateProvider.registerDynamicRoutes(BaseAppsRoutes);
151
}
152
153
DynamicRoutingRun.$inject = ['$rootScope', '$state', '$stateParams'];
0 commit comments