We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f2daf commit 381fc5eCopy full SHA for 381fc5e
extension/options/js/options.js
@@ -99,8 +99,6 @@ function setInitialState() {
99
document.getElementById('answer_type').options.selectedIndex = items.answerTypeFilter;
100
document.getElementById('custom_filter').value = items.customFilter;
101
102
- $(":input").attr('disabled', false);
103
-
104
$("#add_suggestion_filter").click(function() {
105
addFilterSuggestionDiv(true);
106
setTimeout(function() {
@@ -156,6 +154,7 @@ function setInitialState() {
156
154
});
157
155
158
+ $(":input").not("#default_url").attr('disabled', false);
159
160
}
161
0 commit comments