Swap order of indent/outdent in the toolbar consistent with common

word processor implementations.
This commit is contained in:
Erik Moeller 2011-12-10 07:17:44 +00:00
parent 224fc98449
commit 03c0532fc7

View file

@ -53,7 +53,7 @@ es.ToolbarView = function( $container, surfaceView, config ) {
{ 'name': 'history', 'items' : ['undo', 'redo'] },
{ 'name': 'textStyle', 'items' : ['format'] },
{ 'name': 'textStyle', 'items' : ['bold', 'italic', 'link', 'clear'] },
{ 'name': 'list', 'items' : ['number', 'bullet', 'indent', 'outdent' ] }
{ 'name': 'list', 'items' : ['number', 'bullet', 'outdent', 'indent'] }
];
this.setup();
};