We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 029327d + 41fdb3d commit 5850e0eCopy full SHA for 5850e0e
plugins/wysiwygarea/plugin.js
@@ -286,7 +286,8 @@
286
}
287
288
var title = editor.document.getElementsByTag( 'title' ).getItem( 0 );
289
- title.data( 'cke-title', editor.document.$.title );
+ // document.title is malfunctioning on Chrome, so get value from the element (#12402).
290
+ title.data( 'cke-title', title.getText() );
291
292
// [IE] JAWS will not recognize the aria label we used on the iframe
293
// unless the frame window title string is used as the voice label,
0 commit comments