search

Home  >  Q&A  >  body text

How to disable progress bar with Jquery Toast Plugin?

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

大家讲道理大家讲道理2732 days ago968

reply all(2)I'll reply

  • 滿天的星座

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

    reply
    0
  • 滿天的星座

    滿天的星座2017-07-05 10:41:11

    Change this to false and try it

    reply
    0
  • Cancelreply