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

Commit 88a14ed

Browse files
author
Yvonne Yip
committed
polymer-animation: prefix event names with polymer-
1 parent 613d8f8 commit 88a14ed

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

polymer-animation/polymer-animation.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
*/
4848
/**
4949
* Fired when the animation starts
50-
* @event animation-start
50+
* @event polymer-animation-start
5151
*
5252
* Fired when the animation completes
53-
* @event animation-end
53+
* @event polymer-animation-end
5454
*
5555
*/
5656
Polymer('polymer-animation', {
@@ -290,10 +290,10 @@
290290
}
291291
},
292292
animationStartHandler: function() {
293-
this.fire('animation-start');
293+
this.fire('polymer-animation-start');
294294
},
295295
animationEndHandler: function() {
296-
this.fire('animation-end');
296+
this.fire('polymer-animation-end');
297297
}
298298
});
299299
})();

0 commit comments

Comments
 (0)