Skip to content

Commit

Permalink
The encoded ampersands (&) caused the problems in Safari 5 window…
Browse files Browse the repository at this point in the history
…s. Cleaning up that line fixes it and the extension works
  • Loading branch information
Paul authored and jeveaux committed Jun 24, 2010
1 parent ad69b52 commit 1dcee13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DeliciousGlobalsPage.html
Expand Up @@ -11,7 +11,7 @@
var currentTabTitle = encodeURIComponent(safari.application.activeBrowserWindow.activeTab.title);

var deliciousTab = safari.application.activeBrowserWindow.openTab();
deliciousTab.url = 'http://delicious.com/save?v=5&noui&jump=close&url='+currentTabUrl+'&title='+currentTabTitle;
deliciousTab.url = 'http://delicious.com/save?v=5&noui&jump=close&url='+currentTabUrl+'&title='+currentTabTitle;

}
}
Expand Down

0 comments on commit 1dcee13

Please sign in to comment.