angular-summernote
angular-summernote copied to clipboard
Safari browser for iOS & mac, editor itself doesn't work.
Specific issue to angular-summernote only (it does not exist on summernote).
Reproducible: Safari browser for iOS & mac, editor itself doesn't work.
You can't focus editable area, and cursor doesn't appear. So no question of further editing of text. It behaves as normal display div and not as a content-editable div.
I was having this problem.
For me the problem was that contenteditable="true" did not work when user-select: none CSS was applied to the element.
Solved by adding the following to a more specific CSS rule (i.e. the particular dialog that had my editor):
-webkit-user-select: initial;
user-select: initial;