tags:

views:

16

answers:

1

How can i set text direction [rtl] on load editor.

Can any one helper me in this regards.

+2  A: 

According to the docs, this should do it:

CKEDITOR.config.contentsLangDirection in the CKSource manual

Example taken from there:

config.contentsLangDirection = 'rtl';
Pekka