Back
David Furlong
David Furlong
@david
🤔 learning/devtools/productivity products.
Can offer help with: Coding/JS/CSS.
Could use with help with: finding customers, building an audience 😅
Can offer help with: Coding/JS/CSS.
Could use with help with: finding customers, building an audience 😅
Load previous page…
Prevent selection of an entire DOM node as contenteditable would allow the user to delete it and I can't support that yet
#codebird
Submit v0.1.8 to extension stores which supports any DOM nodes, not just contain those that contain a single text node
#codebird
Prevent: User can double click the whole text and delete it in a contenteditable, including inner DOM elements, preventing diff of DOM nodes.
#codebird
Discovered Node.normalize() to merge adjacent textNodes that contenteditables inexplicably create
#codebird
finally complete rewrite to support text HTMLElements containing multiple textNodes and other HTMLElements with textNodes
#codebird
Reformulate the problem that has been blocking me into a clear and concise version and realized theres a faster albeit more complex/nasty code way to do it, and I should probably just do that way for the time being instead of rearchitecting the core data types.
#codebird
decide to switch to designMode="on" rather than contenteditable="true" as it works on non element textNodes
#codebird
Make progress on handling DOM Nodes with multiple Nodes inside them including Non textNodes as this is common and contenteditable inserts <br> tags