mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-30 14:03:31 +02: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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user