Skip to content

Commit a175ec8

Browse files
authored
Merge pull request #7 from HangYang/option-fix
fix options page not open issue
2 parents d81dc22 + 5e4dd9a commit a175ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $('body').on('click', '.extName', function (e) {
7272
}
7373
});
7474
}).on('click', '.extOptions', e => {
75-
chrome.tabs.create({url: e.target.href});
75+
chrome.tabs.create({url: e.currentTarget.href});
7676
}).on('mouseup', '.extName', e => {
7777
if (e.which == 3) {
7878
cme.uninstall(e.target.dataset.id);

0 commit comments

Comments
 (0)