You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by kf...@apache.org on 2017/06/27 06:01:44 UTC

[04/10] incubator-weex git commit: + [example] fix bug toast refect input

+ [example]  fix bug toast refect  input


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/1a0813a6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/1a0813a6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/1a0813a6

Branch: refs/heads/0.14-dev
Commit: 1a0813a653259c1b48e4ec83df6ebf655b8b917d
Parents: f60456c
Author: 齐山 <su...@163.com>
Authored: Sat Jun 24 20:15:52 2017 +0800
Committer: 齐山 <su...@163.com>
Committed: Sat Jun 24 20:15:52 2017 +0800

----------------------------------------------------------------------
 test/pages/components/textarea-maxlength.vue | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/1a0813a6/test/pages/components/textarea-maxlength.vue
----------------------------------------------------------------------
diff --git a/test/pages/components/textarea-maxlength.vue b/test/pages/components/textarea-maxlength.vue
index 503a59f..6c40601 100644
--- a/test/pages/components/textarea-maxlength.vue
+++ b/test/pages/components/textarea-maxlength.vue
@@ -16,17 +16,17 @@
       oninput (event) {
         this.value = event.value
         console.log('oninput:', event.value)
-        modal.toast({
-          message: `oninput: ${event.value}`,
-          duration: 0.8
-        })
+//        modal.toast({
+//          message: `oninput: ${event.value}`,
+//          duration: 0.8
+//        })
       },
       onchange (event) {
         console.log('onchange:', event.value)
-        modal.toast({
-          message: `onchange: ${event.value}`,
-          duration: 0.8
-        })
+//        modal.toast({
+//          message: `onchange: ${event.value}`,
+//          duration: 0.8
+//        })
       },
     }
   }