1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 07:44:13 +01:00

Cleanup more crufty, stolen Gecko code. Aren't these people supposed to be professionals?

--HG--
extra : rebase_source : 288a8a5f8479dda0c16c1a66132682e71f9a8eba
This commit is contained in:
Kris Maglione
2009-10-21 04:42:04 -04:00
parent 382cbe6691
commit fa9b118aad
2 changed files with 24 additions and 33 deletions

View File

@@ -475,7 +475,7 @@ function Bookmarks() //{{{
let query = item.url.substring(begin.length, rest);
if (item.url.substr(rest) == end && query.indexOf("&") == -1)
{
item.url = decodeURIComponent(query);
item.url = decodeURIComponent(query.replace(/#.*/, ""));
return item;
}
}).filter(util.identity);