Parcourir la source

Docs: Added Ionic and Cordova compatibility information.

Mgsy il y a 6 ans
Parent
commit
ca00c9d923
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 10 0
      docs/builds/guides/frameworks/overview.md

+ 10 - 0
docs/builds/guides/frameworks/overview.md

@@ -41,3 +41,13 @@ We plan to provide more integrations with time. We would like to [hear your idea
 Starting from version 11.0.0 CKEditor 5 is compatible with Electron. Using CKEditor 5 in Electron applications does not require any additional steps.
 
 Check out a [sweet screencast of CKEditor 5 with real-time collaborative editing in Electron](https://twitter.com/ckeditor/status/1016627687568363520).
+
+## Compatibility with Ionic and Cordova
+
+CKEditor 5 is compatible with Ionic framework and Cordova. However, Ionic disables `user-select` by default, what [blocks typing via the virtual keyboard](https://github.com/ckeditor/ckeditor5/issues/701). It's required to set this property to `text` on the CKEditor component. Just update your stylesheet with the following code:
+```css
+ckeditor {
+	-webkit-user-select: text;
+	user-select: text
+}
+```