Problem: copy and paste always creates new nodes
All checks were successful
continuous-integration/drone/push Build is passing

Solution: allow one line text as normals text
This commit is contained in:
Peter Stuifzand 2022-01-09 23:46:54 +01:00
parent e743576043
commit c30156dd10

View File

@ -526,14 +526,18 @@ function editor(root, inputData, options) {
let items = pastedData.toString().split(/\n+/); let items = pastedData.toString().split(/\n+/);
let item = $(this).parents('.list-item') let item = $(this).parents('.list-item')
let id = item.attr('data-id') let id = item.attr('data-id')
const firstItem = store.value(id) if (items.length === 1) {
items = _.map(items, text => { return true
const item = newListItem(firstItem.indented) } else {
item.text = text const firstItem = store.value(id)
return item items = _.map(items, text => {
}) const item = newListItem(firstItem.indented)
store.insertAfter(id, ...items) item.text = text
trigger('change') return item
})
store.insertAfter(id, ...items)
trigger('change')
}
return false return false
} }
}); });