diff options
author | teramako | 2010-08-26 15:32:45 +0000 |
---|---|---|
committer | teramako | 2010-08-26 15:32:45 +0000 |
commit | a6e5fc70771d8696d706a2a7e655ecf6b647e8d8 (patch) | |
tree | 3e65bec41bff7ad489183e2f1de88278beaf9f57 /twittperator | |
parent | 6a32d211a5aee6378cb544166fc0f20dc694e0fb (diff) | |
download | vimperator-plugins-a6e5fc70771d8696d706a2a7e655ecf6b647e8d8.tar.bz2 |
fix typo
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38363 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'twittperator')
-rw-r--r-- | twittperator/twlist-panel.tw | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twittperator/twlist-panel.tw b/twittperator/twlist-panel.tw index c6b4b25..cfc4f0a 100644 --- a/twittperator/twlist-panel.tw +++ b/twittperator/twlist-panel.tw @@ -8,7 +8,7 @@ g:twittperator_plugin_twlist_panel = 1 g:twittperator_screen_name = "<your screen name>" -g:twlist_auto_poup = {0 | 1} +g:twlist_auto_popup = {0 | 1} ツイートがあったときに自動でポップアップするか g:twlist_popup_time = second @@ -171,7 +171,7 @@ function add (msg, target) { function onLoad () { let gv = liberator.globalVariables; screenName = gv.twittperator_screen_name || ""; - autoPopup = gv.twlist_auto_poup ? !!gv.twlist_auto_popup : true; + autoPopup = gv.twlist_auto_popup ? !!gv.twlist_auto_popup : true; popupTime = gv.twlist_popup_time || 20; if (screenName) |