Merge pull request #1371 from ether/fix/ie8-onload-html10n

Fix onload event listener in html10n
This commit is contained in:
John McLear 2013-01-17 08:41:10 -08:00
commit c731269a87
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)