Skip to content

Commit

Permalink
Fixed class name bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ejb committed Nov 25, 2014
1 parent b618082 commit 2d1334a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ A lightweight JavaScript library that creates customisable progress bars for HTM

## Changelog

### v0.2.2

- Fixed class name bug

### v0.2.1

- Fixed loss-of-focus bug
Expand Down
2 changes: 1 addition & 1 deletion progressor.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Progressor.prototype.initProgressBar = function(){
this._textBox.textContent = this._text || "";
this._bar.style.position = "relative";
this._bar.style.zIndex = 1;
this._bar.className = this._bar.className + "progressor";
this._bar.className = this._bar.className + " progressor";

this._progress = document.createElement('div');
this._progress.className = "progressor-progress";
Expand Down
2 changes: 1 addition & 1 deletion progressor.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d1334a

Please sign in to comment.