diff options
author | anekos | 2011-09-16 02:16:10 +0900 |
---|---|---|
committer | anekos | 2011-09-16 02:16:10 +0900 |
commit | 15c25de8d53bd2d06e8a42e4327dcc71a59e8f21 (patch) | |
tree | c8457558a6ed650342823de4de4f6ce27a6ba7eb | |
parent | 8c4a04a7d5547c39a8d08ac234aabdf2e356ee17 (diff) | |
download | vimperator-plugins-15c25de8d53bd2d06e8a42e4327dcc71a59e8f21.tar.bz2 |
ボタンクリックを非同期に (2)
-rw-r--r-- | google-plus-commando.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/google-plus-commando.js b/google-plus-commando.js index 88913a3..40f092d 100644 --- a/google-plus-commando.js +++ b/google-plus-commando.js @@ -899,8 +899,7 @@ let g:gplus_commando_map_menu = "m" share: function () click(Elements.currentEntry.share), post: function () { buffer.scrollTop(); - click(Elements.post.open); - PostHelp.show(); + click(Elements.post.open, PostHelp.show); }, yank: function () { let e = Elements.currentEntry.permlink; |