1
0
Fork 0
forked from forgejo/forgejo

Polyfill the window.customElements (#23592) (#23595)

Backport #23592

Close #23590

It seems that some browsers don't support customElements
This commit is contained in:
wxiaoguang 2023-03-21 02:52:05 +08:00 committed by GitHub
parent 726d6a5077
commit 0732ba32ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,5 @@
import '@webcomponents/custom-elements'; // automatically adds custom elements for older browsers that don't support it
// this is a Gitea's private HTML component, it converts an absolute or relative URL to an absolute URL with the current origin
window.customElements.define('gitea-origin-url', class extends HTMLElement {
connectedCallback() {