Ticket #3868: 3868.patch
File 3868.patch, 1.7 KB (added by , 14 years ago) |
---|
-
_source/plugins/menu/plugin.js
246 246 247 247 return itemA.order < itemB.order ? -1 : 248 248 itemA.order > itemB.order ? 1 : 249 0; 249 // [chrome] SCAYT toolbar options are in reversed order (#3868) 250 CKEDITOR.env.chrome ? -1 : 0; 250 251 }); 251 252 } 252 253 })(); -
CHANGES.html
86 86 <li><a href="http://dev.fckeditor.net/ticket/3812">#3812</a> : Fixed an issue in which the editor 87 87 may show up empty or uneditable in IE7, 8 and Firefox 3.</li> 88 88 <li><a href="http://dev.fckeditor.net/ticket/3825">#3825</a> : Fixed JS error when opening spellingcheck.</li> 89 <li><a href="http://dev.fckeditor.net/ticket/3868">#3868</a> : [chrome] SCAYT toolbar options was in reversed order.</li> 89 90 </ul> 90 91 <h3> 91 92 CKEditor 3.0 RC</h3> -
_source/core/env.js
52 52 webkit : ( agent.indexOf( ' applewebkit/' ) > -1 ), 53 53 54 54 /** 55 * Indicates that CKEditor is running on a Chrome (V8 & webkit) based browser, like 56 * Safari. 57 * @type Boolean 58 * @example 59 * if ( CKEDITOR.env.chrome ) 60 * alert( "I'm on Chrome!" ); 61 */ 62 chrome : ( agent.indexOf( ' chrome/' ) > -1 ), 63 64 /** 55 65 * Indicates that CKEditor is running on Adobe AIR. 56 66 * @type Boolean 57 67 * @example