Skip to content

Register custom element just once #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions src/file-attachment-element.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Attachment from './attachment'

class FileAttachmentElement extends HTMLElement {
export default class FileAttachmentElement extends HTMLElement {
constructor() {
super()
this.addEventListener('dragenter', onDragenter)
Expand Down Expand Up @@ -48,13 +48,6 @@ class FileAttachmentElement extends HTMLElement {
}
}

export default FileAttachmentElement

if (!window.customElements.get('file-attachment')) {
window.FileAttachmentElement = FileAttachmentElement
window.customElements.define('file-attachment', FileAttachmentElement)
}

function hasFile(transfer: DataTransfer): boolean {
return Array.from(transfer.types).indexOf('Files') >= 0
}
Expand Down