diff options
author | suVene | 2008-11-21 17:46:33 +0000 |
---|---|---|
committer | suVene | 2008-11-21 17:46:33 +0000 |
commit | c0495a0c9a5337e105259cd674656cb88e00ea1b (patch) | |
tree | 8507a60cb5004b558e1b22a8169080715381c4c4 /direct_bookmark.js | |
parent | 64595ae97afe8e5924c4ad97b81f547e819c2d96 (diff) | |
download | vimperator-plugins-c0495a0c9a5337e105259cd674656cb88e00ea1b.tar.bz2 |
add post complete message
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@24584 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'direct_bookmark.js')
-rw-r--r-- | direct_bookmark.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/direct_bookmark.js b/direct_bookmark.js index 6848307..4e98830 100644 --- a/direct_bookmark.js +++ b/direct_bookmark.js @@ -1,6 +1,6 @@ // Vimperator plugin: 'Direct Post to Social Bookmarks'
-// Version: 0.12
-// Last Change: 15-Nov-2008. Jan 2008
+// Version: 0.13
+// Last Change: 22-Nov-2008. Jan 2008
// License: Creative Commons
// Maintainer: Trapezoid <trapezoid.g@gmail.com> - http://unsigned.g.hatena.ne.jp/Trapezoid
// Parts:
@@ -626,7 +626,9 @@ user,password,
isNormalize ? getNormalizedPermalink(url) : url,title,
comment,tags
- ));
+ )).next(function() {
+ liberator.echo("[" + services[service].description + "] post completed.");
+ });
});
d.error(function(e){liberator.echoerr("direct_bookmark.js: Exception throwed! " + e);liberator.log(e);});
setTimeout(function(){first.call();},0);
|