[html10n] Fix onload event listener (must be attached to window!)

pull/1371/head
Marcel Klehr 2013-01-16 19:47:54 +01:00
parent 6802353306
commit a1188c15c0
1 changed files with 1 additions and 1 deletions

View File

@ -883,7 +883,7 @@ window.html10n = (function(window, document, undefined) {
html10n.index() html10n.index()
}, false) }, false)
else if (window.attachEvent) else if (window.attachEvent)
document.attachEvent('onload', function() { window.attachEvent('onload', function() {
html10n.index() html10n.index()
}, false) }, false)