#如圖所示,toast彈框會顯示一個進度條,如何在toast外掛設定中停用這個進度條?
Jquery Toast Plugin文件
滿天的星座2017-07-05 10:41:11
相信我,只要這麼做。修改下面這個配置
hideAfter: false
原始碼為證:
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;
}
.......