found and fixed a small bug that did not affect anything...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-01-30 02:44:55 +04:00
parent 534d17394d
commit d96764b8d1

View File

@ -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)
})
})