Prevent race conditions in Chrome.
This commit is contained in:
parent
c3371c4bf7
commit
ce5fe31c1e
@ -10912,11 +10912,11 @@
|
||||
|
||||
Style = {
|
||||
init: function() {
|
||||
this.setup();
|
||||
$.asap((function() {
|
||||
return d.body;
|
||||
}), this.asapInit);
|
||||
$.ready(this.readyInit);
|
||||
return this.setup();
|
||||
return $.ready(this.readyInit);
|
||||
},
|
||||
asapInit: function() {
|
||||
MascotTools.init();
|
||||
|
||||
@ -10933,11 +10933,11 @@
|
||||
|
||||
Style = {
|
||||
init: function() {
|
||||
this.setup();
|
||||
$.asap((function() {
|
||||
return d.body;
|
||||
}), this.asapInit);
|
||||
$.ready(this.readyInit);
|
||||
return this.setup();
|
||||
return $.ready(this.readyInit);
|
||||
},
|
||||
asapInit: function() {
|
||||
MascotTools.init();
|
||||
|
||||
BIN
builds/crx.crx
BIN
builds/crx.crx
Binary file not shown.
@ -10916,11 +10916,11 @@
|
||||
|
||||
Style = {
|
||||
init: function() {
|
||||
this.setup();
|
||||
$.asap((function() {
|
||||
return d.body;
|
||||
}), this.asapInit);
|
||||
$.ready(this.readyInit);
|
||||
return this.setup();
|
||||
return $.ready(this.readyInit);
|
||||
},
|
||||
asapInit: function() {
|
||||
MascotTools.init();
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
Style =
|
||||
init: ->
|
||||
@setup()
|
||||
$.asap (-> d.body), @asapInit
|
||||
$.ready @readyInit
|
||||
@setup()
|
||||
|
||||
asapInit: ->
|
||||
MascotTools.init()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user