Changes between Initial Version and Version 1 of Ticket #9317, comment 3


Ignore:
Timestamp:
Mar 4, 2015, 3:19:37 PM (10 years ago)
Author:
Jakub Ś
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9317, comment 3

    initial v1  
    44editor.on( 'instanceReady', function( e )
    55                                {                               
     6                                        function disableResizing(){
     7                                                if(document.all){ //IE                                                 
     8                                                                window.document.getElementsByTagName('iframe')[0].contentWindow.document.attachEvent('oncontrolselect', function(){return false;});
     9                                                                //window.document.getElementsByTagName('iframe')[0].contentWindow.document.detachEvent('oncontrolselect', function(){return false;});//enable table and image resize
     10                                                        }else{ //Firefox                                               
     11                                                                window.document.getElementsByTagName('iframe')[0].contentWindow.document.execCommand("enableObjectResizing", false, 'false');
     12                                                                window.document.getElementsByTagName('iframe')[0].contentWindow.document.execCommand("enableInlineTableEditing", false, 'false');
     13                                                        }       
     14                                        }
     15                                       
    616                                        disableResizing();
    717                                       
     
    1323                                        });
    1424                                });
    15                                
    16                                 function disableResizing(){
    17                                         if(document.all){ //IE                                                 
    18                                                         window.document.getElementsByTagName('iframe')[0].contentWindow.document.attachEvent('oncontrolselect', function(){return false;});
    19                                                         //window.document.getElementsByTagName('iframe')[0].contentWindow.document.detachEvent('oncontrolselect', function(){return false;});//enable table and image resize
    20                                                 }else{ //Firefox                                               
    21                                                         window.document.getElementsByTagName('iframe')[0].contentWindow.document.execCommand("enableObjectResizing", false, 'false');
    22                                                         window.document.getElementsByTagName('iframe')[0].contentWindow.document.execCommand("enableInlineTableEditing", false, 'false');
    23                                                 }       
    24                                 }
    2525}}}
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy