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

There is a newer version: 3.0.3
Show newest version
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
import 'moment-timezone/builds/moment-timezone-with-data.js';
import * as moment from 'moment/moment.js';

class UIBuilderPage extends PolymerElement {

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

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

    _uibuilderReady() {
        this.dispatchEvent(new CustomEvent('user-timezone-upload', {detail: {value: moment.tz.guess()}}))
    }
};

customElements.define(UIBuilderPage.is, UIBuilderPage);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy