Skip to content
Snippets Groups Projects
Commit c4928eff authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Remove last usage of VPULitElement

parent bd289f7c
No related branches found
No related tags found
No related merge requests found
import {i18n} from './i18n.js';
import {css, html, unsafeCSS} from 'lit-element';
import {css, html, LitElement} from 'lit-element';
import * as commonUtils from './utils.js';
import * as commonStyles from './styles.js';
import './vpu-mini-spinner.js';
import './vpu-spinner.js';
import {getIconCSS} from './vpu-icon.js';
import './vpu-button.js';
import VPULitElement from './vpu-lit-element.js';
class VpuCommonDemo extends VPULitElement {
class VpuCommonDemo extends LitElement {
constructor() {
super();
this.lang = 'de';
......@@ -80,7 +79,7 @@ class VpuCommonDemo extends VPULitElement {
buttonClickHandler() {
setTimeout(() => {
this._("vpu-button").stop();
this.shadowRoot.querySelector("vpu-button").stop();
}, 1000);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment