Skip to content

Commit

Permalink
Fixed options page issue. See #121. Removed un-needed files from `moz…
Browse files Browse the repository at this point in the history
…/` (#135)
  • Loading branch information
Ephellon authored Dec 13, 2019
1 parent 94aa06f commit 91ab716
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion moz/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"homepage_url": "https://github.com/SpaceK33z/web-to-plex/",

"manifest_version": 2,
"version": "4.1.1.3",
"version": "4.1.1.4",
"browser_specific_settings": {
"gecko": {
"id": "mink.cbos@gmail.com",
Expand Down
3 changes: 2 additions & 1 deletion moz/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -2190,7 +2190,8 @@ $('.checkbox', true)
break;
}

self.checked = !self.checked;
if(/(^theme:|using)/i.test(self.dataset.option))
self.checked = !self.checked;
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"homepage_url": "https://github.com/SpaceK33z/web-to-plex/",

"manifest_version": 2,
"version": "4.1.1.3",
"version": "4.1.1.4",
// Firefox Support =>
// "applications": {
// "gecko": {
Expand Down
3 changes: 2 additions & 1 deletion src/options/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2212,7 +2212,8 @@ $('.checkbox', true)
break;
}

self.checked = !self.checked;
if(/(^theme:|using)/i.test(self.dataset.option))
self.checked = !self.checked;
});
});

Expand Down

0 comments on commit 91ab716

Please sign in to comment.