1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 12:02:25 +01:00

The Return of the Link

This commit is contained in:
Viktor Kojouharov
2007-05-13 21:36:54 +00:00
parent 50bb6aa8f2
commit f560f7e046
2 changed files with 26 additions and 2 deletions

View File

@@ -105,11 +105,20 @@ nsBrowserStatusHandler.prototype =
setOverLink : function(link, b)
{
//updateStatusbar(link);
//vimperator.echo(link);
var ssli = get_pref("showstatuslinks");
if (link && ssli)
{
if (ssli == 1)
updateStatusbar("Link: " + link);
else if (ssli == 2)
vimperator.echo("Link: " + link);
}
if (link == "")
{
updateStatusbar();
showMode();
}
},
setJSStatus : function(status)