|
@@ -65,7 +65,7 @@ class Navigation {
|
65
|
65
|
|
66
|
66
|
/**
|
67
|
67
|
* Show a screen as a modal.
|
68
|
|
- * @param {Object} params
|
|
68
|
+ * @param {Object} params
|
69
|
69
|
*/
|
70
|
70
|
showModal(params) {
|
71
|
71
|
return this.commands.showModal(params);
|
|
@@ -89,7 +89,7 @@ class Navigation {
|
89
|
89
|
/**
|
90
|
90
|
* Push a new screen into this screen's navigation stack.
|
91
|
91
|
* @param {String} containerId The container's id.
|
92
|
|
- * @param {*} params
|
|
92
|
+ * @param {*} params
|
93
|
93
|
*/
|
94
|
94
|
push(containerId, params) {
|
95
|
95
|
return this.commands.push(containerId, params);
|
|
@@ -98,7 +98,7 @@ class Navigation {
|
98
|
98
|
/**
|
99
|
99
|
* Pop a container from the stack, regardless of it's position.
|
100
|
100
|
* @param {String} containerId The container's id.
|
101
|
|
- * @param {*} params
|
|
101
|
+ * @param {*} params
|
102
|
102
|
*/
|
103
|
103
|
pop(containerId, params) {
|
104
|
104
|
return this.commands.pop(containerId, params);
|
|
@@ -114,7 +114,7 @@ class Navigation {
|
114
|
114
|
|
115
|
115
|
/**
|
116
|
116
|
* Pop the container's stack to root.
|
117
|
|
- * @param {*} containerId
|
|
117
|
+ * @param {*} containerId
|
118
|
118
|
*/
|
119
|
119
|
popToRoot(containerId) {
|
120
|
120
|
return this.commands.popToRoot(containerId);
|