Using the tab key on the ckeditor

1

I'm using ckeditor on a system I'm developing and I have the following question. Can you enable the tab on ckeditor?

    
asked by anonymous 16.10.2014 / 15:50

1 answer

1

I found the answer I needed. For those who are interested, do the following:

  • open the file ckeditor.js
  • find the word " c.config.tabSpaces || 0 " inside the file
  • then change to " c.config.tabSpaces || 5 " or any other number. In my case I left 5.
  • In this case, when I type a text (CKEDITOR) by typing " TAB " the cursor skips 5 spaces, I use this always at the beginning of each paragraph.     

    24.10.2014 / 21:05