Skip to content

Commit

Permalink
Merge branch 't/10105'
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Feb 21, 2013
2 parents f3a279f + 7790d3b commit d360d7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -19,6 +19,7 @@ CKEditor 4 Changelog
* [#9966](http://dev.ckeditor.com/ticket/9966): Fixed: Unable to type square brackets with French keyboard layout. Changed magicline keystrokes.
* [#9507](http://dev.ckeditor.com/ticket/9507): [Firefox] Selection is moved before editable position when editor focused for the first time.
* [#9947](http://dev.ckeditor.com/ticket/9947): [Webkit] Editor overflows parent container in some edge cases.
* [#10105](http://dev.ckeditor.com/ticket/10105): Fixed: Broken sourcearea view when RTL language is set.

## CKEditor 4.0.1.1

Expand Down
4 changes: 4 additions & 0 deletions plugins/sourcearea/plugin.js
Expand Up @@ -34,6 +34,10 @@
},
CKEDITOR.tools.cssVendorPrefix( 'tab-size', editor.config.sourceAreaTabSize || 4 ) ) );

// Make sure that source code is always displayed LTR,
// regardless of editor language (#10105).
textarea.setAttribute( 'dir', 'ltr' );

textarea.addClass( 'cke_source cke_reset cke_enable_context_menu' );

editor.ui.space( 'contents' ).append( textarea );
Expand Down

0 comments on commit d360d7b

Please sign in to comment.