From f19e8dd7336aeb71829c3be1c850c6eb1a9db90f Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Wed, 28 Sep 2011 18:51:11 +0200 Subject: [PATCH] Minimal fix to make del.icio.us bookmark saving work again with the "new Delicious" Not yet fixed issues: After saving the bookmark, the "new delicious" will go to your bookmark list instead of back to the page you saved. I suspect that adding a "jump" parameter could help here, but I haven't found the proper value for that yet. Will fix it as soon as I found a solution to that. --- modules/webjump.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/webjump.js b/modules/webjump.js index 67883c8..8bbc166 100644 --- a/modules/webjump.js +++ b/modules/webjump.js @@ -99,7 +99,7 @@ function define_webjump (key, handler) { function define_delicious_webjumps (username) { define_webjump("delicious", "http://www.delicious.com/" + username + "/%s", $alternative = "http://www.delicious.com/" + username); - define_webjump("adelicious", "javascript:location.href='http://www.delicious.com/"+username+ + define_webjump("adelicious", "javascript:location.href='http://www.delicious.com/save"+ "?v=2&url='+encodeURIComponent(location.href)+'&title='+"+ "encodeURIComponent(document.title);"); define_webjump("sdelicious", "http://www.delicious.com/search?p=%s&u="+username+ -- 2.11.4.GIT