Trust me, just do this. Modify the following configuration
hideAfter: false
Source code as evidence:
canAutoHide: function () {
return ( this.options.hideAfter !== false ) && !isNaN( parseInt( this.options.hideAfter, 10 ) );
},
processLoader: function () {
// Show the loader only, if auto-hide is on and loader is demanded
if (!this.canAutoHide() || this.options.loader === false) {
return false;
}
.......
Trust me, just do this. Modify the following configuration
Source code as evidence:
Change this to false and try it