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

Fix Range() struct definition.

Closes issue #428.
This commit is contained in:
Doug Kearns
2011-03-10 22:20:52 +11:00
parent 11623d4f8b
commit 718ad5d807

View File

@@ -33,7 +33,7 @@ update(Range.prototype, {
get isEternity() this.max == null && this.min == null,
get isSession() this.max == null && this.min == sanitizer.sessionStart,
get native() this.isEternity ? null : [range.min || 0, range.max == null ? Number.MAX_VALUE : range.max]
get native() this.isEternity ? null : [this.min || 0, this.max == null ? Number.MAX_VALUE : this.max]
});
var Item = Class("SanitizeItem", {