Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Fix for when manual-change is fired in keydown
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffposnick committed Jul 17, 2014
1 parent 63ebd41 commit 68ee517
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion paper-slider.html
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,11 @@
var c = e.keyCode;
if (c === 37) {
this.decrement();
this.fire('manual-change');
} else if (c === 39) {
this.increment();
this.fire('manual-change');
}
this.fire('manual-change');
}

});
Expand Down

0 comments on commit 68ee517

Please sign in to comment.