Skip to content

Commit

Permalink
exported class-name not aligned with other elements
Browse files Browse the repository at this point in the history
  • Loading branch information
manolo committed Nov 19, 2017
1 parent 922f6ef commit 9e3dd6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vaadin-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
* @memberof Vaadin
* @demo demo/index.html
*/
class VaadinDialog extends (class extends Polymer.Element {}) {
class DialogElement extends (class extends Polymer.Element {}) {
static get is() {
return 'vaadin-dialog';
}
Expand Down Expand Up @@ -175,12 +175,12 @@
}
}

customElements.define(VaadinDialog.is, VaadinDialog);
customElements.define(DialogElement.is, DialogElement);
/**
* @namespace Vaadin
*/
window.Vaadin = window.Vaadin || {};
Vaadin.VaadinDialog = VaadinDialog;
Vaadin.DialogElement = DialogElement;
}
</script>
</dom-module>

0 comments on commit 9e3dd6b

Please sign in to comment.