summaryrefslogtreecommitdiff
path: root/js/PrefHelpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/PrefHelpers.js')
-rw-r--r--js/PrefHelpers.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/PrefHelpers.js b/js/PrefHelpers.js
index 343253c9d..749e954cc 100644
--- a/js/PrefHelpers.js
+++ b/js/PrefHelpers.js
@@ -1,5 +1,5 @@
define(["dojo/_base/declare"], function (declare) {
- return declare("fox.PrefHelpers", null, {
+ Prefs = {
clearFeedAccessKeys: function() {
if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) {
Notify.progress("Clearing URLs...");
@@ -148,5 +148,7 @@ define(["dojo/_base/declare"], function (declare) {
Notify.close();
});
}
- });
+ }
+
+ return Prefs;
});