1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-17 10:33:34 +01:00

Fix Debian #534477(don't print the HTML code in url in the status line).

This matches the behaviour of hovered link status-line updates.
This commit is contained in:
Doug Kearns
2009-07-11 16:51:49 +10:00
parent 49da7fca3a
commit 25f2695ee2
2 changed files with 40 additions and 10 deletions

View File

@@ -536,7 +536,7 @@ function Events() //{{{
// hacky way to get rid of "Transfering data from ..." on sites with frames
// when you click on a link inside a frameset, because asyncUpdateUI
// is not triggered there (Gecko bug?)
setTimeout(statusline.updateUrl, 10);
setTimeout(function () { statusline.updateUrl(); }, 10);
return;
}
@@ -1753,7 +1753,7 @@ function Events() //{{{
// called at the very end of a page load
asyncUpdateUI: function ()
{
setTimeout(statusline.updateUrl, 100);
setTimeout(function () { statusline.updateUrl(); }, 100);
},
setOverLink: function (link, b)
{