1
0
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:
Kris Maglione
2011-01-19 01:35:36 -05:00
parent 9546a7adb6
commit a12b100458
2 changed files with 94 additions and 89 deletions

View File

@@ -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;
}