-
I'm curious to know what the use case was for including `contenteditable` as a global attribute. Specifically, I'm curious per its behavior when used on interactive elements, or on elements within in…
-
If the contentEditable property is not specified on a node to update and the existing node has it, virtual-dom tries to set it to a blank string. This throws the following error in Chrome and Firefox:…
-
Madapaja,
First and foremost - your code is awesome!
It works beautifully for input text-boxes and text areas.
However, where I'm having a problem is trying to use it for a that has its attribute …
-
```
1. type text "abc"
2. hit cmd + a or ctrl + a
Expected: "abc" is highlighted.
Actual: "abc" is not highlighted.
Simplified test case or site demonstrating the problem:
https://gist.github.com/by…
-
Hi,
Any reason for using this? The problem I've found is when pasting in param data HTML formatting is included. This results in query string parameters with unwanted data.
sshaw updated
7 years ago
-
I am currently working on a [branch](https://github.com/itmaybejj/editoria11y/tree/contenteditable) that will allow for live feedback as you type in WYSIWYG editors based on the HTML contenteditable a…
-
CSS has [the `:disabled` pseudo-class](https://developer.mozilla.org/en-US/docs/Web/CSS/:disabled), since elements that are children of `` act as if they had the attribute set themselves.
That woul…
-
```
1. type text "abc"
2. hit cmd + a or ctrl + a
Expected: "abc" is highlighted.
Actual: "abc" is not highlighted.
Simplified test case or site demonstrating the problem:
https://gist.github.com/by…
-
To support the fancy new WYSIWYG editors that are not just textarea replacements we will need to redesign the content module to work with one. This also allows us to add a lot of neat features like no…
-
Hi,
I am using React Codemirror in my next app with tailwind. For some reason, the editable prop (and read only) are not working for me. I am still able to edit the code in the editor. I checked CS…