Unable to insert text in inline editor on Safari
See original GitHub issueI initialize my editor with this:
tinyMCE.init({
selector: `#${tinyMCEEditor.id}`,
inline: true
})
Now when i use it in Chrome it works fine. However when i attempt to use it in safari on OSX the following happens:
- The menu with all the buttons opens
- The input looks like it’s focused as intended.
- Typings doesn’t work
- No caret is shown.
I’m using version 4.4.1 of tinymce. I have tested on safari for OSX 10.10.5 and OSX 10.12. Neither of which are working. Using normal (iframe) mode everything works as intended.
Additionally the example for inline mode on the tinymce webpage works fine.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Add and edit cell content in Pages on Mac - Apple Support
Select an object in your document (or another document), or the text that contains an inline object, then choose Edit > Cut or...
Read more >Use Messages on your Mac - Apple Support
Send a message. Edit or undo a sent message. Add a Tapback or inline reply. Find photos and other attachments from conversations.
Read more >Place objects with text in Pages on Mac - Apple Support (HK)
Move an inline object to the page · Select an inline object in the document body: Click it. · Select an inline object...
Read more >Position and align objects in Pages on Mac - Apple Support
To move an inline object outside the text flow, see Move an inline object to the page. Align an object using x and...
Read more >Editing Code to Change Your Webpage - Apple Developer
This new document explores the many features and capabilities of Web Inspector in a step-by-step tutorial.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Had the same problem and found a CSS rule which may cause the problem. Adding
-webkit-user-select: text
to the draggable div fixes it for me: http://fiddle.tinymce.com/3Cfaab/15 You may add an!important
rule as well. Hope someone finds it useful.@spocke @wayway @ovcharenkokatia @pribilinskiy
Hello, I have the same problem. Does anyone find a solution to fix it?