Guy Carmeli 6 年之前
父節點
當前提交
7faab821eb
No account linked to committer's email address
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      lib/src/Navigation.js

+ 4
- 4
lib/src/Navigation.js 查看文件

@@ -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);