#breaking Styling improvements
-
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
oropts.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