diff --git a/4chan_x.js b/4chan_x.js
index a9a1a9541..1e6d55ba2 100644
--- a/4chan_x.js
+++ b/4chan_x.js
@@ -93,7 +93,7 @@
'Quote Inline': [false, 'Show quoted post inline on quote click'],
'Quote Preview': [false, 'Show quote content on hover']
},
- filter: {
+ hide: {
'Reply Hiding': [true, 'Hide single replies'],
'Thread Hiding': [true, 'Hide entire threads'],
'Show Stubs': [true, 'Of hidden threads / replies']
@@ -919,7 +919,7 @@
var dialog, hiddenNum, hiddenThreads, html, input, _i, _len, _ref;
hiddenThreads = $.getValue("hiddenThreads/" + g.BOARD + "/", {});
hiddenNum = Object.keys(g.hiddenReplies).length + Object.keys(hiddenThreads).length;
- html = "
";
+ html = "
";
dialog = ui.dialog('options', {
top: '25%',
left: '25%'
@@ -928,7 +928,7 @@
options.append(config.main.img, $('#img', dialog));
options.append(config.main.post, $('#post', dialog));
options.append(config.main.quote, $('#quote', dialog));
- options.append(config.main.filter, $('#filter', dialog));
+ options.append(config.main.hide, $('#hide', dialog));
options.append(config.main.misc, $('#misc', dialog));
_ref = $$('input[type=checkbox]', dialog);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
diff --git a/script.coffee b/script.coffee
index 27d0a8c11..2c4ba2a0d 100644
--- a/script.coffee
+++ b/script.coffee
@@ -32,7 +32,7 @@ config =
'Quote Backlinks': [false, 'Add quote backlinks']
'Quote Inline': [false, 'Show quoted post inline on quote click']
'Quote Preview': [false, 'Show quote content on hover']
- filter:
+ hide:
'Reply Hiding': [true, 'Hide single replies']
'Thread Hiding': [true, 'Hide entire threads']
'Show Stubs': [true, 'Of hidden threads / replies']
@@ -699,7 +699,7 @@ options =
-
+
@@ -719,7 +719,7 @@ options =
options.append config.main.img, $('#img', dialog)
options.append config.main.post, $('#post', dialog)
options.append config.main.quote, $('#quote', dialog)
- options.append config.main.filter, $('#filter', dialog)
+ options.append config.main.hide, $('#hide', dialog)
options.append config.main.misc, $('#misc', dialog)
for input in $$ 'input[type=checkbox]', dialog
$.bind input, 'click', $.cb.checked