1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 14:27:59 +01:00

- fixed hints display on zoom

- fixed n and N commands (don't use closures)
This commit is contained in:
Martin Stubenschrott
2007-04-20 13:33:34 +00:00
parent 48b9f413cd
commit 2244db0ecf
7 changed files with 115 additions and 66 deletions

View File

@@ -43,6 +43,7 @@ var popup_allowed_events; // need to change and reset this firefox pref
var g_inputbuffer = ""; // here we store partial commands (e.g. 'g' if you want to type 'gg')
var g_count = -1; // the parsed integer of g_inputbuffer, or -1 if no count was given
var g_bufshow = false; // keeps track if the preview window shows current buffers ('B')
// handles to our gui elements
var preview_window = null;
@@ -82,9 +83,9 @@ nsBrowserStatusHandler.prototype =
setOverLink : function(link, b)
{
if (link != "")
echo(link);
else
echo(link);
if (link == "")
showMode();
},