style(bootstrap): fix some missing spaces

This commit is contained in:
Di Peng 2011-08-15 16:19:19 -07:00 committed by Igor Minar
parent a13653c814
commit e14ac2c3b0

View file

@ -95,7 +95,7 @@
document.write('<script type="text/javascript" src="' + serverPath + '../angularFiles.js' + '" ' +
'onload="addScripts(angularFiles.angularSrc)"></script>');
function onLoadListener(){
function onLoadListener() {
// empty the cache to prevent mem leaks
globalVars = {};
@ -107,9 +107,9 @@
angularInit(config, document);
}
if (window.addEventListener){
if (window.addEventListener) {
window.addEventListener('load', onLoadListener, false);
} else if (window.attachEvent){
} else if (window.attachEvent) {
window.attachEvent('onload', onLoadListener);
}