diff options
author | tyru | 2011-09-29 08:42:42 +0900 |
---|---|---|
committer | tyru | 2011-09-29 08:42:42 +0900 |
commit | 0b6965c18ea98df07c78f0b29f8182689f46c5e8 (patch) | |
tree | 45a732bae552856a783cbbb432f97619a5648180 /direct_bookmark.js | |
parent | e6beef7cec1d8dd7bf65be81aa255e2024634452 (diff) | |
download | vimperator-plugins-0b6965c18ea98df07c78f0b29f8182689f46c5e8.tar.bz2 |
direct_bookmark.js: fix delicious tag separator
Diffstat (limited to 'direct_bookmark.js')
-rw-r--r-- | direct_bookmark.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/direct_bookmark.js b/direct_bookmark.js index 80f99af..9b4c35d 100644 --- a/direct_bookmark.js +++ b/direct_bookmark.js @@ -398,7 +398,7 @@ for Migemo search: require XUL/Migemo Extension entryPage:'http://del.icio.us/url/%URL::MD5%',
poster:function(user,password,url,title,comment,tags){
var request_url = 'https://api.del.icio.us/v1/posts/add?' + [
- ['url', url], ['description', title], ['extended', comment], ['tags', tags.join(' ')]
+ ['url', url], ['description', title], ['extended', comment], ['tags', tags.join(',')]
].map(function(p) p[0] + '=' + encodeURIComponent(p[1])).join('&');
return Deferred.http({
method: "get",
|