ソースを参照

Merge branch 'master' into t/1517

Piotrek Koszuliński 6 年 前
コミット
63550aa809
1 ファイル変更11 行追加0 行削除
  1. 11 0
      docs/builds/guides/frameworks/overview.md

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

@@ -41,3 +41,14 @@ 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](https://ionicframework.com/) and [Cordova](https://cordova.apache.org/). 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
+}
+```