Skip to content

Commit

Permalink
Merge branch 't/13133' into major
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed May 4, 2015
2 parents 5111e74 + c9cce96 commit c0a9cef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Fixed Issues:
* [#13185](http://dev.ckeditor.com/ticket/13185): Fixed: Wrong position of the suggestion box if there is not enough space below the caret.
* [#13138](http://dev.ckeditor.com/ticket/13138): Fixed: The "Toggle empty elements" button label is unclear.
* [#13136](http://dev.ckeditor.com/ticket/13136): Fixed: Autocompleter is far too intrusive.
* [#13133](http://dev.ckeditor.com/ticket/13133): Fixed: Tab leaves the editor.

## CKEditor 4.5 Beta

Expand Down
5 changes: 3 additions & 2 deletions samples/toolbarconfigurator/js/toolbartextmodifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@
value: cfgValue,
smartIndent: false,
indentWithTabs: true,
indentUnit: 4,
tabSize: 4,
theme: 'neo',
extraKeys: {
'Left': complete,
Expand All @@ -186,8 +188,7 @@
"'\"'": complete,
Backspace: complete,
Delete: complete,
Tab: false,
'Shift-Tab': false
'Shift-Tab': 'indentLess'
}
} );

Expand Down

0 comments on commit c0a9cef

Please sign in to comment.