diff options
author | thinca | 2011-05-27 02:05:23 +0900 |
---|---|---|
committer | thinca | 2011-05-27 02:54:53 +0900 |
commit | 049fbb0ad20edb7e037c32374cecb5dfde66a504 (patch) | |
tree | fb69434bf21ac68ed8464d34551270d78a8dcee2 /direct_bookmark.js | |
parent | fafc5d2c62456ac852c5ae0ec7b7d098c93b16c1 (diff) | |
download | vimperator-plugins-049fbb0ad20edb7e037c32374cecb5dfde66a504.tar.bz2 |
Supported comment for Google Bookmarks.
Diffstat (limited to 'direct_bookmark.js')
-rw-r--r-- | direct_bookmark.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/direct_bookmark.js b/direct_bookmark.js index 1d3688b..f58e027 100644 --- a/direct_bookmark.js +++ b/direct_bookmark.js @@ -1,4 +1,4 @@ -// Last Change: 21-Jan-2010. Jan 2008
+// Last Change: 27-May-2011. Jan 2008
var PLUGIN_INFO =
<VimperatorPlugin>
<name>{NAME}</name>
@@ -490,7 +490,7 @@ for Migemo search: require XUL/Migemo Extension poster:function(user,password,url,title,comment,tags){
var request_url = 'http://www.google.com/bookmarks/mark';
var params = [
- ['bkmk', url], ['title', title], ['labels', tags.join(',')]
+ ['bkmk', url], ['title', title], ['labels', tags.join(',')], ['annotation', comment]
].map(function(p) p[0] + '=' + encodeURIComponent(p[1])).join('&');
return Deferred.http({
method: "post",
|