As shown in the picture, the toast pop-up box will display a progress bar. How to disable this progress bar in the toast plug-in configuration?
Jquery Toast Plugin Documentation
滿天的星座2017-07-05 10:41:11
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;
}
.......