Changeset 5820
- Timestamp:
- 08/12/10 22:52:58 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (2 diffs)
-
_source/plugins/table/dialogs/table.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r5813 r5820 41 41 <p> 42 42 Fixed issues:</p> 43 <ul> 44 <li><a href="http://dev.fckeditor.net/ticket/6027">#6027</a> : Modifying Table Properties by selecting more than one cell caused issues.</li> 45 </ul> 43 46 <h3> 44 47 CKEditor 3.4 Beta</h3> … … 57 60 Fixed issues:</p> 58 61 <ul> 59 <li><a href="http://dev.fckeditor.net/ticket/5911">#5911</a> : BiDi: List items should support and retain correct base language direction 62 <li><a href="http://dev.fckeditor.net/ticket/5911">#5911</a> : BiDi: List items should support and retain correct base language direction</li> 60 63 <li><a href="http://dev.fckeditor.net/ticket/5689">#5689</a> : Make it possible to run CKEditor inside of Firefox chrome.</li> 61 64 <li><a href="http://dev.fckeditor.net/ticket/6042">#6042</a> : It wasn't possible to align a paragraph with the dir attribute to the opposite direction.</li> -
CKEditor/trunk/_source/plugins/table/dialogs/table.js
r5812 r5820 89 89 if ( command == 'tableProperties' ) 90 90 { 91 if ( ( selectedTable = editor.getSelection().getSelectedElement() ) ) 92 { 93 if ( selectedTable.getName() != 'table' ) 94 selectedTable = null; 95 } 91 if ( ( selectedTable = selection.getSelectedElement() ) ) 92 selectedTable = selectedTable.getAscendant( 'table', true ); 96 93 else if ( ranges.length > 0 ) 97 94 {
Note: See TracChangeset
for help on using the changeset viewer.
