Skip to content
Snippets Groups Projects
Select Git revision
  • d24130d02eb38b6901e8e5089f6f64083876a7b3
  • 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

vpu-lit-element.js

Blame
  • Patrizio Bekerle's avatar
    Bekerle, Patrizio authored and Christoph Reiter committed
    273ee387
    History
    vpu-lit-element.js 237 B
    import {LitElement} from "lit-element";
    
    export default class VPULitElement extends LitElement {
        _(selector) {
            return this.shadowRoot === null ? this.querySelector(selector) : this.shadowRoot.querySelector(selector);
        }
    }