mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 00:34:11 +01:00
Replace prefs.getDefault with prefs.defaults.get, and remove useless private _load/_store methods.
This commit is contained in:
@@ -990,7 +990,7 @@ var Options = Module("options", {
|
||||
context.pushProcessor(0, function (item, text, next) next(item, text.substr(0, 100)));
|
||||
context.completions = [
|
||||
[prefs.get(filter), "Current Value"],
|
||||
[prefs.getDefault(filter), "Default Value"]
|
||||
[prefs.defaults.get(filter), "Default Value"]
|
||||
].filter(function (k) k[0] != null);
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user