Skip to content

Commit

Permalink
Fixed loss of focus issueresolve #4
Browse files Browse the repository at this point in the history
  • Loading branch information
ejb committed Jan 31, 2014
1 parent 8bff8d9 commit 641191a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions progressor.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ Progressor.prototype.addClickEvents = function(){
}
}
this._bar.addEventListener("mousedown", mouseDown.bind(this) );
this._bar.addEventListener("mouseup", mouseUp.bind(this) );
this._bar.addEventListener("mousemove", mouseMove.bind(this) );
document.addEventListener("mouseup", mouseUp.bind(this) );
document.addEventListener("mousemove", mouseMove.bind(this) );
};

var progressor = {
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 641191a

Please sign in to comment.