mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
editor: chore: estilo
This commit is contained in:
parent
b11346074a
commit
f25e93ad4b
2 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
import { storeContent, restoreContent, forgetContent } from 'editor/storage'
|
||||
import { isDirectChild, moveChildren, safeGetSelection, safeGetRangeAt, setAuxiliaryToolbar, parentBlockNames, clearSelected } from 'editor/utils'
|
||||
import {
|
||||
isDirectChild, moveChildren, safeGetSelection, safeGetRangeAt,
|
||||
setAuxiliaryToolbar, parentBlockNames, clearSelected,
|
||||
} from 'editor/utils'
|
||||
import { types, getValidChildren, getType } from 'editor/types'
|
||||
import { setupButtons as setupMarksButtons } from 'editor/types/marks'
|
||||
import { setupButtons as setupBlocksButtons } from 'editor/types/blocks'
|
||||
|
|
|
@ -51,8 +51,11 @@ export const types: { [propName: string]: EditorNode } = {
|
|||
|
||||
export function getType (node: Element): { typeName: string, type: EditorNode } | null {
|
||||
for (let [typeName, type] of Object.entries(types)) {
|
||||
if (node.matches(type.selector)) return { typeName, type }
|
||||
if (node.matches(type.selector)) {
|
||||
return { typeName, type }
|
||||
}
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue