Skip to content

Commit 53ca9cf

Browse files
Release 0.8.1
1 parent 9537bac commit 53ca9cf

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ProgressBar.js
22

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

55
<br>
66
![Beautiful animation](docs/animation.gif)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "progressbar.js",
33
"main": "dist/progressbar.js",
4-
"version": "0.8.0-dev",
4+
"version": "0.8.1",
55
"homepage": "https://github.com/kimmobrunfeldt/progressbar.js",
66
"authors": [
77
"Kimmo Brunfeldt <[email protected]>"

dist/progressbar.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ProgressBar.js 0.8.0
1+
// ProgressBar.js 0.8.1
22
// https://kimmobrunfeldt.github.io/progressbar.js
33
// License: MIT
44

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

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

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

19721972
function setStyle(element, style, value) {
19731973
for (var i = 0; i < PREFIXES.length; ++i) {
1974-
var prefix = capitalize(PREFIXES[i]);
1974+
var prefix = PREFIXES[i];
19751975
element.style[prefix + capitalize(style)] = value;
19761976
}
19771977

0 commit comments

Comments
 (0)