We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d455c commit 9e538f5Copy full SHA for 9e538f5
src/Flame/HTML/Attribute/Event.js
@@ -1,4 +1,7 @@
1
exports.nodeValue_ = function (event) {
2
+ if (event.target.contentEditable)
3
+ return event.target.innerText;
4
+
5
return event.target.value;
6
}
7
0 commit comments