Skip to content

Instantly share code, notes, and snippets.

@AlaaAttya
Last active March 19, 2017 15:14
Show Gist options
  • Save AlaaAttya/803e55c7538d3a033ae8eb85b1f2d435 to your computer and use it in GitHub Desktop.
Save AlaaAttya/803e55c7538d3a033ae8eb85b1f2d435 to your computer and use it in GitHub Desktop.
rtl support based on element's name naming convention (append `_ar` to the name of elements you wish to change their direction)
$(function() {
$('textarea').each(function(index, obj) {
if(obj.name.indexOf('_ar') != -1) {
tinymce.init({selector: "[name="+ obj.name + "]", 'directionality': 'rtl'});
} else {
tinymce.init({selector: "[name="+ obj.name + "]", 'directionality': 'ltr'});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment