Skip to content

Commit fd2c89a

Browse files
committed
Fixed #119: For some users, upgrade notification was showing on every browser restart
1 parent 1261077 commit fd2c89a

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/chrome/backgroundscript.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@
1414

1515
// On each load, check if we should show the options/changelist page.
1616
function onLoad() {
17+
// This timeout is a dirty hack to fix bug #119: "Markdown Here Upgrade
18+
// Notification every time I open Chrome". That issue on Github for details.
19+
// https://github.com/adam-p/markdown-here/issues/119
20+
setTimeout(upgradeCheck, 30000);
21+
}
22+
23+
// In the interest of improved browser load performace, call `onLoad` after a tick.
24+
window.addEventListener('load', Utils.nextTickFn(onLoad), false);
25+
26+
function upgradeCheck() {
1727
OptionsStore.get(function(options) {
1828
var appDetails = chrome.app.getDetails();
1929

@@ -41,9 +51,6 @@ function onLoad() {
4151
});
4252
}
4353

44-
// In the interest of improved browser load performace, call our onLoad after a tick.
45-
window.addEventListener('load', Utils.nextTickFn(onLoad), false);
46-
4754
// Create the context menu that will signal our main code.
4855
chrome.contextMenus.create({
4956
contexts: ['editable'],

0 commit comments

Comments
 (0)