froala / wysiwyg-editor

The next generation Javascript WYSIWYG HTML Editor.
https://www.froala.com/wysiwyg-editor
Other
5.22k stars 664 forks source link

backspace adds strange character on iphone with Cordova app #3684

Open greggreenhaw opened 4 years ago

greggreenhaw commented 4 years ago

When hitting backspace in the edit in a cordova app this strange character is inserted €‹

greggreenhaw commented 4 years ago

By returning false in the isIOS method if window.cordova exists fixes the issue

function t() { if(window.cordova) return false; return /(iPad|iPhone|iPod)/g.test(navigator.userAgent) && !a() }