From d96764b8d1b59be4a10d01f16b27b552f83b37e6 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 30 Jan 2013 02:44:55 +0400 Subject: [PATCH] found and fixed a small bug that did not affect anything... Signed-off-by: Alex A. Naanou --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 40a07f2..696a567 100755 --- a/index.html +++ b/index.html @@ -115,7 +115,7 @@ $(document).ready(function(){ // hide the splash screen... $(window).one('webkitTransitionEnd oTransitionEnd msTransitionEnd transitionend', function(){ - setTimeout($('.splash').fadeOut(), 100) + setTimeout(function(){$('.splash').fadeOut()}, 50) }) })