Skip to content

Commit

Permalink
Merge pull request #12 from DanielSiepmann/bugfix/handle-js-context
Browse files Browse the repository at this point in the history
Fix none working backend
  • Loading branch information
bmack authored Sep 25, 2020
2 parents 00657f5 + 3b3f156 commit ac3b7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Public/JavaScript/Modules/Edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function openBackendHandler(event) {
element = element.closest('a.typo3-feedit-btn-openBackend');
}

var vHWin = window.open(element.getAttribute('data-backendScript'), element.getAttribute('data-t3BeSitenameMd5'));
var vHWin = window.open(element.getAttribute('data-backendScript'), element.getAttribute('data-t3BeSitenameMd5'), 'noopener=yes');
vHWin.focus();
return false;
}
Expand Down

0 comments on commit ac3b7cc

Please sign in to comment.