Skip to content

Commit

Permalink
36832: Seiteneditor: title-Attribut für iFrame falsch bzw. nicht auss…
Browse files Browse the repository at this point in the history
…agekräftig
  • Loading branch information
alex40724 committed Dec 29, 2023
1 parent 6e35924 commit 856d8b5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,9 @@ export default class ParagraphUI {
const ef = action.paragraph().editor();
const tblact = action.table().editor();
const ifrm = document.getElementById('tinytarget_ifr');
ifrm.title = il.Language.txt("copg_edit_iframe_title");
if (ifrm) {
ifrm.title = il.Language.txt("copg_edit_iframe_title");
}

//#0017152
$('#tinytarget_ifr').contents().find("html").attr('lang', $('html').attr('lang'));
Expand Down

0 comments on commit 856d8b5

Please sign in to comment.