Ticket #3868: 3868.patch

File 3868.patch, 1.7 KB (added by Tobiasz Cudnik, 15 years ago)
  • _source/plugins/menu/plugin.js

     
    246246
    247247                                return itemA.order < itemB.order ? -1 :
    248248                                        itemA.order > itemB.order ? 1 :
    249                                         0;
     249                                        // [chrome] SCAYT toolbar options are in reversed order (#3868)
     250                                        CKEDITOR.env.chrome ? -1 : 0;
    250251                        });
    251252        }
    252253})();
  • CHANGES.html

     
    8686                <li><a href="http://dev.fckeditor.net/ticket/3812">#3812</a> : Fixed an issue in which the editor
    8787                        may show up empty or uneditable in IE7, 8 and Firefox 3.</li>
    8888                <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>
    8990        </ul>
    9091        <h3>
    9192                CKEditor 3.0 RC</h3>
  • _source/core/env.js

     
    5252                        webkit  : ( agent.indexOf( ' applewebkit/' ) > -1 ),
    5353
    5454                        /**
     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                        /**
    5565                         * Indicates that CKEditor is running on Adobe AIR.
    5666                         * @type Boolean
    5767                         * @example
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy