Skip to content

Commit 21c7b2f

Browse files
author
Richard Frost
committed
Bump version and remove unnecessary code
1 parent 3bf2809 commit 21c7b2f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"short_name": "Profanity Filter",
44
"author": "phermium",
55
"manifest_version": 2,
6-
"version": "1.0.1",
6+
"version": "1.0.2",
77
"description": "Hide offensive words on the webpages you visit",
88
"icons": {
99
"16": "icons/icon16.png",

options.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ function wordAdd(event) {
338338
if (!arrayContains(Object.keys(config.words), word)) {
339339
config.words[word] = {"matchMethod": 1, "words": []};
340340
saveOptions(event, config);
341-
dynamicList(Object.keys(config.words), 'wordSelect', 'Words to Filter');
342341
document.getElementById('wordText').value = "";
343342
} else {
344343
updateStatus('Word already in list.', true, 3000);
@@ -366,7 +365,6 @@ function wordRemove(event) {
366365
if (word != "") {
367366
delete config.words[word];
368367
saveOptions(event, config);
369-
dynamicList(Object.keys(config.words), 'wordSelect', 'Words to Filter');
370368
}
371369
}
372370

0 commit comments

Comments
 (0)