UNPKG

substance

Version:

Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing systems.

18 lines (12 loc) 265 B
class DragAndDropHandler { match(dragState, context) { // eslint-disable-line return false } drop(dragState, context) { // eslint-disable-line // nothing } get _isDragAndDropHandler() { return true } } export default DragAndDropHandler