Skip to content

Instantly share code, notes, and snippets.

@harveenatwal
harveenatwal / githubs-native-drop-zone.txt
Last active July 21, 2024 04:38
Github's native drop zone
// eslint-disable-next-line no-restricted-imports
import {fire} from 'delegated-events'
// eslint-disable-next-line no-restricted-imports
import {observe} from '@github/selector-observer'
// Entire document is drop target.
observe('.js-document-dropzone', {
constructor: HTMLElement,
add(el) {
document.body.addEventListener('dragstart', onDragstart)