Skip to content
Snippets Groups Projects
Select Git revision
  • ce340c5c9724c2a578a2046eabf7a09828ee8021
  • main default protected
  • renovate/lock-file-maintenance
  • demo protected
  • person-select-custom
  • dbp-translation-component
  • icon-set-mapping
  • port-i18next-parser
  • remove-sentry
  • favorites-and-recent-files
  • revert-6c632dc6
  • lit2
  • advertisement
  • wc-part
  • automagic
  • publish
  • wip-cleanup
  • demo-file-handling
18 results

demo.js

Blame
  • dbp-lit-element.js 237 B
    import {LitElement} from "lit-element";
    
    export default class DBPLitElement extends LitElement {
        _(selector) {
            return this.shadowRoot === null ? this.querySelector(selector) : this.shadowRoot.querySelector(selector);
        }
    }