Repository: incubator-weex-site Updated Branches: refs/heads/master 9eff2e343 -> ebc496754
Hi, I corrected two error of Android extend guide. when i integrate weex to my app, I found many written error in weex guide, is someone to maintain this project, is this project be shutdown at future? 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/a85f0389 Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex-site/tree/a85f0389 Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex-site/diff/a85f0389 Branch: refs/heads/master Commit: a85f03893d9a51e05b88330e7684ccd739b1010e Parents: 60a3273 Author: Zz <[email protected]> Authored: Mon Jan 29 17:42:03 2018 +0800 Committer: Zz <[email protected]> Committed: Mon Jan 29 17:42:03 2018 +0800 ---------------------------------------------------------------------- source/cn/guide/extend-android.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-weex-site/blob/a85f0389/source/cn/guide/extend-android.md ---------------------------------------------------------------------- diff --git a/source/cn/guide/extend-android.md b/source/cn/guide/extend-android.md index 542056f..3301f4c 100644 --- a/source/cn/guide/extend-android.md +++ b/source/cn/guide/extend-android.md @@ -108,7 +108,7 @@ JS è°ç¨å¦ä¸ï¼ ```html <template> <div> - <richText tel="12305" style="width:200;height:100">12305</text> + <richText tel="12305" style="width:200;height:100">12305</richText> </div> </template> ``` @@ -133,7 +133,7 @@ JS è°ç¨å¦ä¸ï¼ <script> module.exports = { created: function() { - this.$el('mycomponent').focus(); + this.$refs.mycomponent.focus(); } } </script>
