forked from kyuwoo-choi/Squire
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
Handle element that has contenteditable as false #7
Comments
|
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
구분선 주변에서 좌우 키로 이동 시 커서(range)가
<hr>
테그 양옆에 위치하게 되고 (실제 랜더링은 css의 영향으로<hr>
바로 아래에 렌더링 된다.) 그 순간 텍스트를 입력하면 구분선 위아래에 텍스트가 입력된다.이를 수정하기 위해 구분선을 아래와 같은 형태의 돔으로 운영하기로 하였다. (nhn/tui.editor#543)
이때의 스콰이어의 문제는 다른 텍스트를 나타내는
<div>
가<div contenteditable="false">
로 머지될 소지가 있으며, delete키와 backspace 키로 구분선을 지울 때<div contenteditable="false">
안에 있는<hr contenteditable="false">
만 지운다.The text was updated successfully, but these errors were encountered: