Skip to content

Commit

Permalink
fix correct event name
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonad committed Jan 18, 2017
1 parent 121ae8a commit 1a25169
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions y-element.html
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@
ready: function () {
var self = this
this._eventHandler = function (event) {
self.fire('on-event', event)
self.fire('event', event)
}
},
is: 'y-type',
Expand Down Expand Up @@ -584,7 +584,7 @@
}
}
this._eventHandler = function (event) {
self.fire('on-event', event)
self.fire('event', event)
}
},
is: 'y-array',
Expand Down Expand Up @@ -674,7 +674,7 @@
}
}
this._eventHandler = function (event) {
self.fire('on-event', event)
self.fire('event', event)
}
},
is: 'y-map',
Expand Down

0 comments on commit 1a25169

Please sign in to comment.