removed stop increase timeout to 100ms

This commit is contained in:
barisusakli
2014-07-11 23:14:50 -04:00
parent 0362c1a3b0
commit 93a6402879

View File

@@ -100,7 +100,7 @@ var ajaxify = ajaxify || {};
app.processPage();
$('#content, #footer').stop(true, true).removeClass('ajaxifying');
$('#content, #footer').removeClass('ajaxifying');
ajaxify.initialLoad = false;
app.refreshTitle(url);
@@ -194,7 +194,7 @@ var ajaxify = ajaxify || {};
setTimeout(function() {
callback(null, ajaxify.preloader[url].data);
ajaxify.preloader[url] = null;
}, 50);
}, 100);
return;
}