Index: ext/background.js |
=================================================================== |
--- a/ext/background.js |
+++ b/ext/background.js |
@@ -80,7 +80,7 @@ |
window.ext.showOptions = function(callback) |
{ |
- if (!/\/(?:mobile|new)-options\.html/.test(top.location.href)) |
+ if (!/\/(?:mobile-options|options)\.html/.test(top.location.href)) |
Thomas Greiner
2017/09/29 16:51:09
Detail: The "options" part is duplicated so I'd su
saroyanm
2017/09/29 17:09:32
Good one, done.
|
window.open("new-options.html", "_blank"); |
Thomas Greiner
2017/09/29 16:51:09
This string needs to be changed as well.
saroyanm
2017/09/29 17:09:32
Right! Well spotted. Done.
|
if (callback) |