We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elements with attributes "contenteditable" are not yet implemented in plusnew. Please support this atttribute.
<currentValue.Observer>{currentValueState => <span key="newChip" contenteditable="true" onkeydown={(event) => { // Prevent default line-breaks if (event.key === 'Enter') { event.preventDefault(); } if (event.currentTarget !== null) { const value = (event.currentTarget as HTMLDivElement).textContent; if (value !== null) { if (value.length > 0) { currentValue.dispatch(value); } } } }}> {currentValueState} </span> }</currentValue.Observer>
"plusnew": "0.6.57",
The text was updated successfully, but these errors were encountered:
will be implemented in https://github.com/plusnew/driver-dom, but with the onInput event
Sorry, something went wrong.
plusgut
No branches or pull requests
Expected behavior and actual behavior.
Elements with attributes "contenteditable" are not yet implemented in plusnew.
Please support this atttribute.
Steps to reproduce the problem.
Specifications like the version of the project or browser version
"plusnew": "0.6.57",
The text was updated successfully, but these errors were encountered: