diff options
author | anekos | 2009-08-27 08:48:37 +0000 |
---|---|---|
committer | anekos | 2009-08-27 08:48:37 +0000 |
commit | 76493bca826c8a59ad252fe90c228e4f1e12997a (patch) | |
tree | b452856b3d3aa22d5af2cbcc214e0307be31ea16 /twitter.js | |
parent | 06aac10f72fa48fe53c0e5612dd42fe0d3617150 (diff) | |
download | vimperator-plugins-76493bca826c8a59ad252fe90c228e4f1e12997a.tar.bz2 |
Follow HEAD
for http://vimperator.org/trac/gitweb/?p=liberator.git;a=commitdiff;h=f20c2b315bb05c2e88d0c672f07dc229cc9267d2
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@35089 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'twitter.js')
-rw-r--r-- | twitter.js | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -21,8 +21,8 @@ let PLUGIN_INFO = <VimperatorPlugin> <name>{NAME}</name> -<description>The script allows you to update Twitter status from Vimperator 0.6.*.</description> -<version>0</version> +<description>The script allows you to update Twitter status from Vimperator</description> +<version>1.0.1</version> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/twitter.js</updateURL> <author>Trapezoid</author> <license>Creative Commons</license> @@ -193,7 +193,8 @@ let PLUGIN_INFO = liberator.echo(html, true); } liberator.modules.commands.addUserCommand(["twitter"], "Change Twitter status", - function(arg, special){ + function(arg){ + var special = arg.bang; var password; var username; try { |