Changeset 7451 for CKEditor/trunk
- Timestamp:
- 04/05/12 15:02:08 (15 months ago)
- Location:
- CKEditor/trunk
- Files:
-
- 3 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/floatpanel/plugin.js (modified) (1 diff)
-
_source/plugins/panel/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r7450 r7451 93 93 <li><a href="http://dev.ckeditor.com/ticket/8493">#8493</a> : [IE] It is impossible to add a link to the selected text.</li> 94 94 <li><a href="http://dev.ckeditor.com/ticket/8528">#8528</a> : Redundant <code>imagePreviewBoxId</code> in the Image Properties dialog window is now removed.</li> 95 <li><a href="http://dev.ckeditor.com/ticket/8864">#8864</a> : [IE]Fix ARIA presentation of toolbar rich combo in JAWS.</li> 95 96 </ul> 96 97 <h3> -
CKEditor/trunk/_source/plugins/floatpanel/plugin.js
r7368 r7451 47 47 element = panel.element, 48 48 iframe = element.getFirst().getFirst(); 49 50 // Disable native browser menu. (#4825) 51 element.disableContextMenu(); 49 52 50 53 this.element = element; -
CKEditor/trunk/_source/plugins/panel/plugin.js
r7248 r7451 228 228 var blocks = this._.blocks, 229 229 block = blocks[ name ], 230 current = this._.currentBlock, 231 holder = this.forceIFrame ? 232 this.document.getById( this.id + '_frame' ) 233 : this._.holder; 234 235 // Disable context menu for block panel. 236 holder.getParent().getParent().disableContextMenu(); 230 current = this._.currentBlock; 231 232 // ARIA role works better in IE on the body element, while on the iframe 233 // for FF. (#8864) 234 var holder = !this.forceIFrame || CKEDITOR.env.ie ? 235 this._.holder : this.document.getById( this.id + '_frame' ); 237 236 238 237 if ( current )
Note: See TracChangeset
for help on using the changeset viewer.
