Defect #20153
Ajax indicator ajaxComplete/ajaxStop do not fire at (document).ready
Status: | Needs feedback | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | - | |||
Target version: | - | |||
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.
History
#1
Updated by Jean-Philippe Lang about 7 years ago
- Status changed from New to Needs feedback
Can't reproduce. Please read SubmittingBugs.
#2
Updated by Toshi MARUYAMA almost 7 years ago
- Description updated (diff)