Skip to content

Commit

Permalink
FIX: undefined variable.
Browse files Browse the repository at this point in the history
event was not defined
  • Loading branch information
kylefinley committed Aug 22, 2014
1 parent c4d6294 commit 802cbfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/paper/d-paper-item/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Component.prototype.downAction = function(event) {
this.emit('mousedown', event);
}

Component.prototype.upAction = function() {
Component.prototype.upAction = function(event) {
this.model.set('pressed', false);

if (!this.model.get('isToggle')) {
Expand Down

0 comments on commit 802cbfd

Please sign in to comment.