How to disable progress bar with Jquery Toast Plugin?
大家讲道理
大家讲道理 2017-07-05 10:39:11
0
2
959

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

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(2)
滿天的星座

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;
  }
  .......
滿天的星座

Change this to false and try it

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template