Changeset 6095
- Timestamp:
- 11/15/10 13:26:07 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 4 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/floatpanel/plugin.js (modified) (1 diff)
-
_source/plugins/menubutton/plugin.js (modified) (2 diffs)
-
_source/plugins/richcombo/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r6094 r6095 55 55 <li><a href="http://dev.ckeditor.com/ticket/6479">#6479</a> : BIDI: Language direction is not being preserved when pressing Enter after a paragraph format has been applied.</li> 56 56 <li><a href="http://dev.ckeditor.com/ticket/6670">#6670</a> : BIDI: Indent & List icons are not reversed when we apply RTL direction to a paragraph with any of Paragraph Formatting options.</li> 57 <li><a href="http://dev.ckeditor.com/ticket/6640">#6640</a> : Floating panels are now being closed when switching modes.</li> 57 58 </ul> 58 59 <h3> -
CKEditor/trunk/_source/plugins/floatpanel/plugin.js
r6044 r6095 61 61 dir : editor.lang.dir 62 62 }; 63 64 editor.on( 'mode', function(){ this.hide(); }, this ); 63 65 }, 64 66 -
CKEditor/trunk/_source/plugins/menubutton/plugin.js
r5283 r6095 41 41 menu.onHide = CKEDITOR.tools.bind( function() 42 42 { 43 this.setState( _.previousState);43 this.setState( this.modes && this.modes[ editor.mode ] ? _.previousState : CKEDITOR.TRISTATE_DISABLED ); 44 44 }, 45 45 this ); … … 47 47 // Initialize the menu items at this point. 48 48 if ( this.onMenu ) 49 {50 49 menu.addListener( this.onMenu ); 51 }52 50 } 53 51 -
CKEditor/trunk/_source/plugins/richcombo/plugin.js
r5909 r6095 245 245 this.element.getFirst().removeClass( me.className + '_panel' ); 246 246 247 me.setState( CKEDITOR.TRISTATE_OFF);247 me.setState( me.modes && me.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED ); 248 248 249 249 me._.on = 0;
Note: See TracChangeset
for help on using the changeset viewer.
