Ticket #5100: 5100_2.patch
File 5100_2.patch, 979 bytes (added by , 13 years ago) |
---|
-
_source/core/dom/element.js
1162 1162 function() 1163 1163 { 1164 1164 this.$.style.MozUserSelect = 'none'; 1165 this.on( 'dragstart', function (evt) { evt.data.preventDefault(); } ); 1165 1166 } 1166 1167 : CKEDITOR.env.webkit ? 1167 1168 function() 1168 1169 { 1169 1170 this.$.style.KhtmlUserSelect = 'none'; 1171 this.on( 'dragstart', function (evt) { evt.data.preventDefault(); } ); 1170 1172 } 1171 1173 : 1172 1174 function() -
_source/plugins/panel/plugin.js
192 192 this ); 193 193 194 194 holder = doc.getBody(); 195 holder.unselectable(); 195 196 } 196 197 else 197 198 holder = this.document.getById( 'cke_' + this.id );