Ticket #5690: 5690.patch
File 5690.patch, 676 bytes (added by , 13 years ago) |
---|
-
_source/plugins/tabletools/dialogs/tableCell.js
149 149 ], 150 150 setup : function( selectedCell ) 151 151 { 152 var widthMatch = widthPattern.exec( selectedCell. $.style.width);152 var widthMatch = widthPattern.exec( selectedCell.getStyle( 'width' ) || selectedCell.getAttribute( 'width' ) ); 153 153 if ( widthMatch ) 154 154 this.setValue( widthMatch[2] ); 155 155 }