diff options
author | anekos | 2010-08-08 06:13:55 +0000 |
---|---|---|
committer | anekos | 2010-08-08 06:13:55 +0000 |
commit | dfa77dc3a44dbf30767cfb5fb1f4302428a70a8d (patch) | |
tree | caf530d6a425adf8dcdbe2871bd32bbd8141dd4a /twittperator.js | |
parent | 38d99ade8a74ac4d885c4e8224ca5abbb3185e59 (diff) | |
download | vimperator-plugins-dfa77dc3a44dbf30767cfb5fb1f4302428a70a8d.tar.bz2 |
それは既に付け加えられているのだァッ!!
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38222 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'twittperator.js')
-rwxr-xr-x | twittperator.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js index 1243f25..7b2e6ef 100755 --- a/twittperator.js +++ b/twittperator.js @@ -28,7 +28,7 @@ let PLUGIN_INFO = <name>twittperator</name> <description>Twitter Client using ChirpStream</description> <description lang="ja">OAuth対応Twitterクライアント</description> - <version>1.0.4</version> + <version>1.0.5</version> <minVersion>2.3</minVersion> <maxVersion>2.4</maxVersion> <author mail="teramako@gmail.com" homepage="http://d.hatena.ne.jp/teramako/">teramako</author> @@ -1289,7 +1289,8 @@ let PLUGIN_INFO = return { start: start, stop: stop, - addListener: function(func) listeners.push(func) + addListener: function(func) listeners.push(func), + removeListener: function(func) (listeners = listeners.filter(function (l) (l != func))) }; })(); // }}} function xmlhttpRequest(options) { // {{{ |