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

fix typo in exitPopupMode()

This commit is contained in:
Doug Kearns
2008-08-08 07:53:11 +00:00
parent d92f1335e6
commit a35329f625

View File

@@ -308,7 +308,7 @@ liberator.Events = function () //{{{
function exitPopupMode()
{
// gContextMenu is set to NULL by Firefox, when a context menu is closed
if (typeof gContextMenu != "undefined" && gContextMenu == NULL && !activeMenubar)
if (typeof gContextMenu != "undefined" && gContextMenu == null && !activeMenubar)
liberator.modes.remove(liberator.modes.MENU);
}
function enterMenuMode()