如图所示,toast弹框会显示一个进度条,如何在toast插件配置中禁用这个进度条?Jquery Toast Plugin文档
1 回答
富国沪深
TA贡献1790条经验 获得超9个赞
相信我,只要这么做。修改下面这个配置
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;
}
.......
添加回答
举报
0/150
提交
取消