mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 22:42:26 +01:00
normalise comparisons with undefined
This commit is contained in:
@@ -884,7 +884,7 @@ liberator.Tabs = function () //{{{
|
||||
else
|
||||
{
|
||||
buffer = lastBufferSwitchArgs;
|
||||
if (typeof allowNonUnique == "undefined" || allowNonUnique == null)
|
||||
if (allowNonUnique === undefined || allowNonUnique == null) // XXX
|
||||
allowNonUnique = lastBufferSwitchSpecial;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user