#breaking Styling improvements
-
New documentation in http://progressbarjs.readthedocs.org/en/1.0.0/
-
Fixed and updated sauce labs tests
-
Add
text.autoStyleContaineroption -
HTML string or DOM element is now possible to pass in
opts.text.valueor to.setTextmethod -
breaking: Change behavior default style options. From now on, if you define anything to
opts.svgStyleoropts.text.styleyourself, 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