Actions
Defect #20153
openAjax indicator ajaxComplete/ajaxStop do not fire at (document).ready
Status:
Needs feedback
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Affected version:
Description
Ajax loading bar does not hide after the document jquery ajaxStart event fires it.
Temporary workaround would be if we add:
function hideAjaxIndicator() {
$('#ajax-indicator').hide();
}
$(document).ready(function () {
setTimeout(hideAjaxIndicator, 1000);
});
to application.js in public/javascript
which will force initial .hide on ajaxindicator.
Actions