Skip to content

Commit

Permalink
Align overlay element class name with other vaadin elements
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Feb 5, 2018
1 parent 572c921 commit b63dbee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vaadin-context-menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
*
* @memberof Vaadin
*/
class VaadinContextMenuOverlayElement extends Vaadin.OverlayElement {
class ContextMenuOverlayElement extends Vaadin.OverlayElement {
static get is() {
return 'vaadin-context-menu-overlay';
}
}

customElements.define(VaadinContextMenuOverlayElement.is, VaadinContextMenuOverlayElement);
customElements.define(ContextMenuOverlayElement.is, ContextMenuOverlayElement);
})();
</script>
</dom-module>
Expand Down

0 comments on commit b63dbee

Please sign in to comment.