update

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

Branch: refs/heads/master
Commit: 4ac5cafa15d3c76c8859a46803b7b14048e06336
Parents: f1ddc1e
Author: MrRaindrop <[email protected]>
Authored: Mon Mar 26 18:03:13 2018 +0800
Committer: MrRaindrop <[email protected]>
Committed: Mon Mar 26 18:03:13 2018 +0800

----------------------------------------------------------------------
 source/cn/wiki/event-bubble.md | 6 +++---
 source/wiki/event-bubble.md    | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex-site/blob/4ac5cafa/source/cn/wiki/event-bubble.md
----------------------------------------------------------------------
diff --git a/source/cn/wiki/event-bubble.md b/source/cn/wiki/event-bubble.md
index f44748a..cfdd6d3 100644
--- a/source/cn/wiki/event-bubble.md
+++ b/source/cn/wiki/event-bubble.md
@@ -50,7 +50,7 @@ Weex 在 0.13 版本 SDK 
里实现了事件冒泡机制。注意事件冒泡默
 ```javascript
 {
   handleClick (event) {
-    // stop event propagation.
+    // 阻止继续冒泡.
     event.stopPropagation()
   }
 }
@@ -62,6 +62,6 @@ Weex 在 0.13 版本 SDK 
里实现了事件冒泡机制。注意事件冒泡默
 
 ## 实例
 
-[开启事件冒泡](http://dotwe.org/vue/fa2957ce3e9eb47ad9ae1da22d845e95):使用
 Weex playground App 扫描页面里的二维ç 
ï¼Œç„¶åŽåœ¨æ‰“开页面中点击包含 'click me' 
文字的方框,会看到事件冒泡效果,即外层的组件依次显示事件成功冒泡到当前组件的提示。
+- 
[开启事件冒泡](http://dotwe.org/vue/fa2957ce3e9eb47ad9ae1da22d845e95):使用
 Weex playground App 扫描页面里的二维ç 
ï¼Œç„¶åŽåœ¨æ‰“开页面中点击包含 'click me' 
文字的方框,会看到事件冒泡效果,即外层的组件依次显示事件成功冒泡到当前组件的提示。
 
-[阻止冒泡](http://dotwe.org/vue/2cc80e19c9b2430fb780234628065a69):使用 
Weex playground App 扫描页面里的二维ç 
ï¼Œç„¶åŽåœ¨æ‰“开页面中点击包含 'click me' 
文字的方框,可以看到事件冒泡被父组件中断了,不再冒泡到最外层组件。
+- 
[阻止冒泡](http://dotwe.org/vue/2cc80e19c9b2430fb780234628065a69):使用 
Weex playground App 扫描页面里的二维ç 
ï¼Œç„¶åŽåœ¨æ‰“开页面中点击包含 'click me' 
文字的方框,可以看到事件冒泡被父组件中断了,不再冒泡到最外层组件。

http://git-wip-us.apache.org/repos/asf/incubator-weex-site/blob/4ac5cafa/source/wiki/event-bubble.md
----------------------------------------------------------------------
diff --git a/source/wiki/event-bubble.md b/source/wiki/event-bubble.md
index f470a7e..07b3034 100644
--- a/source/wiki/event-bubble.md
+++ b/source/wiki/event-bubble.md
@@ -50,7 +50,7 @@ In the event handler function, you can use the 
`event.stopPropagation()` method
 ```javascript
 {
   handleClick (event) {
-    // stop event propagation.
+    // Stop event propagation.
     event.stopPropagation()
   }
 }
@@ -62,6 +62,6 @@ One thing should be noticed: **For compatibility reason, Weex 
does not turn on e
 
 ## Examples
 
-[enable event 
bubbling](http://dotwe.org/vue/fa2957ce3e9eb47ad9ae1da22d845e95): Use Weex 
playground APP to scan the qr-code, and then click on the middle of the 
rectangle with a line of text 'click me' on, you can see the event bubbling up, 
being handled with every listener binding on each div element, printing 
messages which indicate that they are indeed been reached by the event.
+- [enable event 
bubbling](http://dotwe.org/vue/fa2957ce3e9eb47ad9ae1da22d845e95): Use Weex 
playground APP to scan the qr-code, and then click on the middle of the 
rectangle with a line of text 'click me' on, you can see the event bubbling up, 
being handled with every listener binding on each div element, printing 
messages which indicate that they are indeed been reached by the event.
 
-[stop event 
propagation](http://dotwe.org/vue/2cc80e19c9b2430fb780234628065a69): Use Weex 
playground APP to scan the qr-code, and then click on the middle of the 
rectangle with a line of text 'click me' on, you can see the event bubbling is 
disturbed, no longer continue to spread to the root element.
+- [stop event 
propagation](http://dotwe.org/vue/2cc80e19c9b2430fb780234628065a69): Use Weex 
playground APP to scan the qr-code, and then click on the middle of the 
rectangle with a line of text 'click me' on, you can see the event bubbling is 
disturbed, no longer continue to spread to the root element.

Reply via email to