Browse Source

Fix loading problem

Nathaniel van Diepen 10 years ago
parent
commit
d0b89fd70f
1 changed files with 3 additions and 1 deletions
  1. 3 1
      site/js/index.js

+ 3 - 1
site/js/index.js

@@ -627,7 +627,9 @@ $(function(){
 				location.reload();
 			}
 		},1000);
-		delayedload();
+		if(typeof delayedload == 'function'){
+			delayedload();
+		}
 		$('body').show();
 		$('body').resize();
 	});