Ticket #5100: 5100_2.patch

File 5100_2.patch, 979 bytes (added by Alfonso Martínez de Lizarrondo, 14 years ago)

New patch

  • _source/core/dom/element.js

     
    11621162                                function()
    11631163                                {
    11641164                                        this.$.style.MozUserSelect = 'none';
     1165                                        this.on( 'dragstart', function (evt) { evt.data.preventDefault(); } );
    11651166                                }
    11661167                        : CKEDITOR.env.webkit ?
    11671168                                function()
    11681169                                {
    11691170                                        this.$.style.KhtmlUserSelect = 'none';
     1171                                        this.on( 'dragstart', function (evt) { evt.data.preventDefault(); } );
    11701172                                }
    11711173                        :
    11721174                                function()
  • _source/plugins/panel/plugin.js

     
    192192                                        this );
    193193
    194194                                holder = doc.getBody();
     195                                holder.unselectable();
    195196                        }
    196197                        else
    197198                                holder = this.document.getById( 'cke_' + this.id );
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy