diff options
author | anekos | 2010-08-03 10:50:38 +0000 |
---|---|---|
committer | anekos | 2010-08-03 10:50:38 +0000 |
commit | a141805a671200f49d7dbb8cc6cef7d4c640dbdd (patch) | |
tree | 27b2a62e71a3ecc71d86d3a4693d7e8473b9fbc3 | |
parent | 0bb7e13430e86f87228997ebe7ed043d1abe7977 (diff) | |
download | vimperator-plugins-a141805a671200f49d7dbb8cc6cef7d4c640dbdd.tar.bz2 |
無意味な引数処理を削除
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38146 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twittperator.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/twittperator.js b/twittperator.js index e402688..d3fdda1 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1298,9 +1298,6 @@ }); } // }}} function showTwitterMentions(arg) { // {{{ - // XXX 引数には何の意味が? - if (/^@/.test(arg)) - arg = arg.substr(1); tw.get("http://api.twitter.com/1/statuses/mentions.json", null, function(text) { showTL(JSON.parse(text)); }); |