Ticket #6962: 6962.patch

File 6962.patch, 776 bytes (added by Frederico Caldeira Knabben, 13 years ago)
  • _source/core/dom/event.js

     
    120120        }
    121121};
    122122
     123// For the followind constants, we need to go over the Unicode boundaries
     124// (0x10FFFF) to avoid collision.
     125
    123126/**
    124  * CTRL key (1000).
     127 * CTRL key (0x110000).
    125128 * @constant
    126129 * @example
    127130 */
    128 CKEDITOR.CTRL = 1000;
     131CKEDITOR.CTRL = 0x110000;
    129132
    130133/**
    131  * SHIFT key (2000).
     134 * SHIFT key (0x220000).
    132135 * @constant
    133136 * @example
    134137 */
    135 CKEDITOR.SHIFT = 2000;
     138CKEDITOR.SHIFT = 0x220000;
    136139
    137140/**
    138  * ALT key (4000).
     141 * ALT key (0x440000).
    139142 * @constant
    140143 * @example
    141144 */
    142 CKEDITOR.ALT = 4000;
     145CKEDITOR.ALT = 0x440000;
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy