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

Commit

Permalink
polymer-animation: prefix event names with polymer-
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvonne Yip committed Oct 15, 2013
1 parent 613d8f8 commit 88a14ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions polymer-animation/polymer-animation.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
*/
/**
* Fired when the animation starts
* @event animation-start
* @event polymer-animation-start
*
* Fired when the animation completes
* @event animation-end
* @event polymer-animation-end
*
*/
Polymer('polymer-animation', {
Expand Down Expand Up @@ -290,10 +290,10 @@
}
},
animationStartHandler: function() {
this.fire('animation-start');
this.fire('polymer-animation-start');
},
animationEndHandler: function() {
this.fire('animation-end');
this.fire('polymer-animation-end');
}
});
})();
Expand Down

0 comments on commit 88a14ed

Please sign in to comment.