Ticket #3211: 3211.patch

File 3211.patch, 1.8 KB (added by Artur Formella, 15 years ago)
  • _source/plugins/print/plugin.js

     
    1616                // Register the command.
    1717                var command = editor.addCommand( pluginName, CKEDITOR.plugins.print );
    1818
    19                 // It is imposible to print the inner document in Opera.
    20                 if ( CKEDITOR.env.opera )
    21                         command.state = CKEDITOR.TRISTATE_DISABLED;
    22 
    2319                // Register the toolbar button.
    2420                editor.ui.addButton( 'Print',
    2521                        {
     
    3935                        editor.window.$.print();
    4036                else
    4137                        editor.document.$.execCommand( "Print" );
    42         }
     38        },
     39        modes : { wysiwyg : !( CKEDITOR.env.opera ) }           // It is imposible to print the inner document in Opera.
    4340};
  • _source/plugins/save/plugin.js

     
    4242        {
    4343                init : function( editor )
    4444                {
    45                         editor.addCommand( pluginName, saveCmd );
     45                        var command = editor.addCommand( pluginName, saveCmd );
     46                        command.modes = { wysiwyg : !!( editor.element.$.form ) };
     47
    4648                        editor.ui.addButton( 'Save',
    4749                                {
    4850                                        label : editor.lang.save,
  • _source/plugins/wsc/plugin.js

     
    1717                var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
    1818
    1919                // SpellChecker doesn't work in Opera.
    20                 if ( CKEDITOR.env.opera )
    21                         command.state = CKEDITOR.TRISTATE_DISABLED;
     20                command.modes = { wysiwyg : !( CKEDITOR.env.opera ) }
    2221
    2322                editor.ui.addButton( 'SpellChecker',
    2423                        {
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy