Defect #20153
Updated by Toshi MARUYAMA about 7 years ago
Ajax loading bar does not hide after the document jquery ajaxStart event fires it.
Temporary workaround would be if we add:
<pre><code class="javascript">
function hideAjaxIndicator() {
$('#ajax-indicator').hide();
}
$(document).ready(function () {
setTimeout(hideAjaxIndicator, 1000);
});
</code></pre>
to application.js in public/javascript
which will force initial .hide on ajaxindicator.
Temporary workaround would be if we add:
<pre><code class="javascript">
function hideAjaxIndicator() {
$('#ajax-indicator').hide();
}
$(document).ready(function () {
setTimeout(hideAjaxIndicator, 1000);
});
</code></pre>
to application.js in public/javascript
which will force initial .hide on ajaxindicator.