All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.frontend.uibuilder-page.uibuilder-page.js Maven / Gradle / Ivy

The newest version!
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';

export class UIBuilderPage extends PolymerElement {

    static get template() {
        return html`
            `;
    }

    static get is() {
        return 'uibuilder-page';
    }

    _uibuilderReady() {
        const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
        this.dispatchEvent(new CustomEvent('user-timezone-upload', {detail: {value: timeZone}}));
    }
}

customElements.define(UIBuilderPage.is, UIBuilderPage);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy