handle early load

This commit is contained in:
James Campos 2011-09-11 02:17:02 -07:00
parent fd1cb4b9bd
commit e26457ce92
2 changed files with 12 additions and 2 deletions

View File

@ -2823,6 +2823,7 @@
main = {
init: function() {
var callback, canPost, cutoff, form, hiddenThreads, id, lastChecked, now, op, pathname, table, temp, timestamp, tzOffset, _i, _j, _k, _l, _len, _len2, _len3, _len4, _ref2, _ref3, _ref4, _ref5, _ref6;
$.unbind(window, 'load', main.init);
pathname = location.pathname.substring(1).split('/');
g.BOARD = pathname[0], temp = pathname[1];
if (temp === 'res') {
@ -3213,5 +3214,9 @@
}\
'
};
main.init();
if (d.body) {
main.init();
} else {
$.bind(window, 'load', main.init);
}
}).call(this);

View File

@ -2176,6 +2176,7 @@ firstRun =
main =
init: ->
$.unbind window, 'load', main.init
pathname = location.pathname.substring(1).split('/')
[g.BOARD, temp] = pathname
if temp is 'res'
@ -2548,4 +2549,8 @@ main =
}
'
main.init()
#XXX Opera will load early if script is saved w/o .user
if d.body
main.init()
else
$.bind window, 'load', main.init