Skip to content

Commit

Permalink
Release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmobrunfeldt committed Apr 8, 2015
1 parent 9537bac commit 53ca9cf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ProgressBar.js

**Version: 0.8.0** ([*previous stable*](https://github.com/kimmobrunfeldt/progressbar.js/tree/0.7.4))
**Version: 0.8.1** ([*previous stable*](https://github.com/kimmobrunfeldt/progressbar.js/tree/0.8.0))

<br>
![Beautiful animation](docs/animation.gif)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "progressbar.js",
"main": "dist/progressbar.js",
"version": "0.8.0-dev",
"version": "0.8.1",
"homepage": "https://github.com/kimmobrunfeldt/progressbar.js",
"authors": [
"Kimmo Brunfeldt <[email protected]>"
Expand Down
6 changes: 3 additions & 3 deletions dist/progressbar.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ProgressBar.js 0.8.0
// ProgressBar.js 0.8.1
// https://kimmobrunfeldt.github.io/progressbar.js
// License: MIT

Expand Down Expand Up @@ -1924,7 +1924,7 @@ module.exports = Square;
},{"./shape":6,"./utils":8}],8:[function(require,module,exports){
// Utility functions

var PREFIXES = 'webkit moz o ms'.split(' ');
var PREFIXES = 'Webkit Moz O ms'.split(' ');

// Copy all attributes from source object to destination object.
// destination object is mutated.
Expand Down Expand Up @@ -1971,7 +1971,7 @@ function render(template, vars) {

function setStyle(element, style, value) {
for (var i = 0; i < PREFIXES.length; ++i) {
var prefix = capitalize(PREFIXES[i]);
var prefix = PREFIXES[i];
element.style[prefix + capitalize(style)] = value;
}

Expand Down
Loading

0 comments on commit 53ca9cf

Please sign in to comment.