Changes between Initial Version and Version 1 of Ticket #10063, comment 1
- Timestamp:
- Feb 12, 2013, 9:02:51 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10063, comment 1
initial v1 1 Here is the code snippet that is responsible for this behaviour. If env.mobile is true, env.isCompatible is always false. I think that is a mistake, at least for android jelly bean CKEditor seems to work fine.1 Here is the code snippet from file env.js that is responsible for this behaviour. If env.mobile is true, env.isCompatible is always false. I think that is a mistake, at least for android jelly bean CKEditor seems to work just fine but is always marked as incompatible. 2 2 3 env.isCompatible = // White list of mobile devices that supports. 4 3 4 env.isCompatible = env.iOS && version >= 534 || 5 5 !env.mobile && ( 6 6 ( env.ie && version > 6 ) ||