progressbar.js v1.0.0 Release Notes

Release Date: 2016-03-14 // about 8 years ago

    ๐Ÿ†• New documentation in http://progressbarjs.readthedocs.org/en/1.0.0/

    ๐Ÿ›  Fixed and updated sauce labs tests

    โž• Add text.autoStyleContainer option

    HTML string or DOM element is now possible to pass in opts.text.value or to .setText method

    ๐Ÿ’ฅ breaking : Change behavior default style options. From now on, if you define anything to opts.svgStyle or opts.text.style yourself, no default values will be used. This makes customising the styles easier in JS. If you want to only change one single style attribute, you can do it after initializing the progress bar, like this:

    var bar = new ProgressBar.Line('#container');bar.text.style.fontSize = '40px';
    

    ๐Ÿ›  Fix #107