contenteditable false for tables - true for table cells

This commit is contained in:
christian 2012-02-01 23:26:30 +00:00
parent 29270facde
commit 9340ed6e72
Notes: Gabriel Wicke 2012-02-27 16:40:01 +00:00
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@ es.TableCellView = function( model ) {
// DOM Changes
this.$
.attr( 'style', model.getElementAttribute( 'html/style' ) )
.attr( 'contenteditable', true )
.addClass( 'es-tableCellView' );
};

View file

@ -13,6 +13,7 @@ es.TableView = function( model ) {
// DOM Changes
this.$
.attr( 'style', model.getElementAttribute( 'html/style' ) )
.attr( 'contenteditable', false )
.addClass( 'es-tableView' );
};