|
@@ -76,7 +76,7 @@ function startTabBasedApp(params) {
|
76
|
76
|
}
|
77
|
77
|
});
|
78
|
78
|
ControllerRegistry.registerController(controllerID, () => Controller);
|
79
|
|
- ControllerRegistry.setRootController(controllerID);
|
|
79
|
+ ControllerRegistry.setRootController(controllerID, params.animationType);
|
80
|
80
|
}
|
81
|
81
|
|
82
|
82
|
function startSingleScreenApp(params) {
|
|
@@ -134,7 +134,7 @@ function startSingleScreenApp(params) {
|
134
|
134
|
}
|
135
|
135
|
});
|
136
|
136
|
ControllerRegistry.registerController(controllerID, () => Controller);
|
137
|
|
- ControllerRegistry.setRootController(controllerID);
|
|
137
|
+ ControllerRegistry.setRootController(controllerID, params.animationType);
|
138
|
138
|
}
|
139
|
139
|
|
140
|
140
|
function _mergeScreenSpecificSettings(screenID, screenInstanceID, params) {
|