Skip to content

Commit

Permalink
Fallback iframe's title element to &nbsp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Comandeer committed May 7, 2022
1 parent 8c84127 commit 72eed00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/wysiwygarea/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@
CKEDITOR.tools.setTimeout( onDomReady, 0, this, win );
}, this );

this._.docTitle = this.getWindow().getFrame().getAttribute( 'title' );
this._.docTitle = this.getWindow().getFrame().getAttribute( 'title' ) || ' ';
},

base: CKEDITOR.editable,
Expand Down

0 comments on commit 72eed00

Please sign in to comment.