Remove unused argument from onload handler

This commit is contained in:
Davide P. Cervone 2012-05-18 21:09:27 -04:00
parent c1f2075e67
commit 7abaef2422
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -1940,7 +1940,7 @@ MathJax.Hub.Startup = {
//
// Setup the onload callback
//
onLoad: function (when) {
onLoad: function () {
var onload = this.onload =
MathJax.Callback(function () {MathJax.Hub.Startup.signal.Post("onLoad")});
if (document.body && document.readyState && document.readyState !== "loading") {return [onload]}