Guy Carmeli 7 years ago
parent
commit
7faab821eb
No account linked to committer's email address
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      lib/src/Navigation.js

+ 4
- 4
lib/src/Navigation.js View File

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