Fix for 0.106 - bump card-tools. And a browser player editor.
This commit is contained in:
20
js/browser-player-editor.js
Normal file
20
js/browser-player-editor.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import { LitElement, html, css } from "card-tools/src/lit-element";
|
||||
import { registerCard } from "card-tools/src/editor";
|
||||
|
||||
class BrowserPlayerEditor extends LitElement {
|
||||
setConfig(config) {
|
||||
|
||||
}
|
||||
render() {
|
||||
return html`
|
||||
<div>
|
||||
Nothing to configure.
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
if(!customElements.get("browser-player-editor")) {
|
||||
customElements.define("browser-player-editor", BrowserPlayerEditor);
|
||||
registerCard("browser-player", "Browser Player");
|
||||
}
|
||||
Reference in New Issue
Block a user