Opened 9 years ago
Last modified 9 years ago
#16728 closed Bug
[QM] Editor is broken once Copy Formatting is added — at Initial Version
| Reported by: | Marek Lewandowski | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 4.6.2 |
| Component: | General | Version: | 4.6.0 |
| Keywords: | Cc: |
Description
The problem is caused by this line. Simply there's no underlying querySelectorAll method in QM.
It can be avoided by simply changing function to the following:
_getScreenReaderContainer: function() {
if ( CKEDITOR.env.ie6Compat ) {
// findOne is not supported on Quirks.
return null;
}
return CKEDITOR.document.getBody().findOne( '.cke_copyformatting_notification div[aria-live]' );
}
