UNPKG

@softvisio/ext

Version:
20 lines (18 loc) 493 B
import Ext_Map from './Ext/Map.js'; import ElementParser from './common/ElementParser.js'; export default class EWCMap extends Ext_Map { constructor() { super ([], []); this.xtype = 'map'; } } try { if (window.customElements.get('ext-map') == undefined) { window.customElements.define('ext-map', ElementParser.withParsedCallback(EWCMap)); } } catch(e) { if (window.customElements.get('ext-map') == undefined) { window.customElements.define('ext-map', EWCMap); } }