Skip to content

Commit

Permalink
Bug fix: Post-upgrade page doesn't load (issue #55)
Browse files Browse the repository at this point in the history
  • Loading branch information
aecreations committed Aug 26, 2020
1 parent 9063d36 commit 3312181
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wx-src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ browser.runtime.onInstalled.addListener(async (aInstall) => {

let cmds = await browser.commands.getAll();
if (cmds[0].shortcut == aeConst.DEFAULT_KEYB_SHCT) {
browser.tabs.create({ url: "pages/update-4.3.html" });
browser.tabs.create({ url: "pages/whatsnew-4.3.html" });
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8"/>
<title data-i18n="titleUpdatePg"></title>
<link rel="stylesheet" href="update.css"/>
<link rel="stylesheet" href="whatsnew.css"/>
</head>

<body>
Expand Down Expand Up @@ -35,6 +35,6 @@ <h2 data-i18n="whatsNew"></h2>
</main>

<script src="../modules/aeI18n.js"></script>
<script src="update.js"></script>
<script src="whatsnew.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.

0 comments on commit 3312181

Please sign in to comment.