* ckeditor - CKEditor Easy Keymap
- ÀÌ Ç÷¯±×ÀÎÀ» ÅëÇØ ¿¡µðÅÍ »ç¿ë½Ã ´ÜÃàÅ° ¼³Á¤À» ¼Õ½±°Ô ÇÒ ¼ö ÀÖ½À´Ï´Ù.
* ¶óÀ̼¾½º(¹«·á)
- GPLV3, LGPL3, MPL, MIT
* ¼³Ä¡¹æ¹ý
- Ç÷¯±×ÀÎ ÆÄÀÏÀ» ´Ù¿î·Îµå ¹Þ¾Æ ckeditor °¡ ¼³Ä¡µÈ Æú´õ³» plugins Æú´õ¾È¿¡ ¾÷·Îµå ÇÕ´Ï´Ù.
¿¹) http://example.com/ckeditor/plugins/easykeymap
- ckeditor ÀÇ ¼³Á¤ÆÄÀÏÀÎ config.js ÆÄÀÏÀ» ¿¾î ¾Æ·¡ ¼Ò½º¸¦ Ãß°¡ÇÏ°í,
ÁÖ¼®¿¡ ´Þ¸° ¼³¸í¿¡ ¸Â°Ô ¼³Á¤À» Á¶ÀýÇÕ´Ï´Ù.
config.easykeymaps = {
Å°¹øÈ£ : ½ÇÇàÇÒ ¼Ò½º ±¸¹®
};
- ¿¹Á¦·Î ¾Æ·¡¿Í °°ÀÌ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù.
config.easykeymaps = {
4456530 : String.fromCharCode(174), //ALT + R
4456515 : String.fromCharCode(169) //ALT + C
};
OR
config.easykeymaps[CKEDITOR.ALT + 81] = String.fromCharCode(190); //ALT + Q
OR
CKEDITOR.config.easykeymaps = {
4456530 : String.fromCharCode(174), //ALT + R
4456515 : String.fromCharCode(169) //ALT + C
};
OR
config.easykeymaps[CKEDITOR.CTRL + 83] = function(editor){
alert("You have entered 'CTRL + S' In editor: " + editor.name);
};
|