File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ CKEditor 4 Changelog
11
11
* [ #10146 ] ( http://dev.ckeditor.com/ticket/10146 ) : [ Firefox] Empty lines are being removed while config#enterMode is ENTER_BR.
12
12
* [ #6504 ] ( http://dev.ckeditor.com/ticket/6504 ) : Resolved race condition while loading several customConfig files.
13
13
* [ #10298 ] ( http://dev.ckeditor.com/ticket/10298 ) : Data processor breaks attributes containing protected parts.
14
+ * [ #9945 ] ( http://dev.ckeditor.com/ticket/9945 ) : [ iOS] Scrolling not possible on iPad.
14
15
15
16
## CKEditor 4.1.1
16
17
Original file line number Diff line number Diff line change @@ -306,6 +306,9 @@ if ( !CKEDITOR.env ) {
306
306
if ( env . air )
307
307
env . cssClass += ' cke_browser_air' ;
308
308
309
+ if ( env . iOS )
310
+ env . cssClass += ' cke_browser_ios' ;
311
+
309
312
return env ;
310
313
} ) ( ) ;
311
314
}
Original file line number Diff line number Diff line change @@ -133,6 +133,13 @@ Special outer level classes used in this file:
133
133
white-space : normal;
134
134
}
135
135
136
+ /* On iOS we need to manually enable scrolling in the contents block. (#9945) */
137
+ .cke_browser_ios .cke_contents
138
+ {
139
+ overflow-y : auto;
140
+ -webkit-overflow-scrolling : touch;
141
+ }
142
+
136
143
/* The resizer is the small UI element that is rendered at the bottom right
137
144
part of the editor. It makes is possible to resize the editor UI. */
138
145
.cke_resizer
Original file line number Diff line number Diff line change @@ -147,6 +147,12 @@ Special outer level classes used in this file:
147
147
filter : progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffebebeb', endColorstr='#cfd1cf');
148
148
}
149
149
150
+ /* On iOS we need to manually enable scrolling in the contents block. (#9945) */
151
+ .cke_browser_ios .cke_contents
152
+ {
153
+ overflow-y : auto;
154
+ -webkit-overflow-scrolling : touch;
155
+ }
150
156
151
157
/* The resizer is the small UI element that is rendered at the bottom right
152
158
part of the editor. It makes is possible to resize the editor UI. */
You can’t perform that action at this time.
0 commit comments