File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
// On each load, check if we should show the options/changelist page.
16
16
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 ( ) {
17
27
OptionsStore . get ( function ( options ) {
18
28
var appDetails = chrome . app . getDetails ( ) ;
19
29
@@ -41,9 +51,6 @@ function onLoad() {
41
51
} ) ;
42
52
}
43
53
44
- // In the interest of improved browser load performace, call our onLoad after a tick.
45
- window . addEventListener ( 'load' , Utils . nextTickFn ( onLoad ) , false ) ;
46
-
47
54
// Create the context menu that will signal our main code.
48
55
chrome . contextMenus . create ( {
49
56
contexts : [ 'editable' ] ,
You can’t perform that action at this time.
0 commit comments