JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.1
[ckeditor.git] / _source / core / dom / event.js
index b0e0235..618a110 100644 (file)
@@ -120,23 +120,26 @@ CKEDITOR.dom.event.prototype =
        }\r
 };\r
 \r
+// For the followind constants, we need to go over the Unicode boundaries\r
+// (0x10FFFF) to avoid collision.\r
+\r
 /**\r
- * CTRL key (1000).\r
+ * CTRL key (0x110000).\r
  * @constant\r
  * @example\r
  */\r
-CKEDITOR.CTRL = 1000;\r
+CKEDITOR.CTRL = 0x110000;\r
 \r
 /**\r
- * SHIFT key (2000).\r
+ * SHIFT key (0x220000).\r
  * @constant\r
  * @example\r
  */\r
-CKEDITOR.SHIFT = 2000;\r
+CKEDITOR.SHIFT = 0x220000;\r
 \r
 /**\r
- * ALT key (4000).\r
+ * ALT key (0x440000).\r
  * @constant\r
  * @example\r
  */\r
-CKEDITOR.ALT = 4000;\r
+CKEDITOR.ALT = 0x440000;\r