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.

14 lines (12 loc) 305 B
import insertImage from './insertImage' export default { type: 'drop-asset', match(params) { // Mime-type starts with 'image/' let isImage = params.file.type.indexOf('image/') === 0 return params.type === 'file' && isImage }, drop(tx, params) { insertImage(tx, params.file) } }