1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00

Updated to prevent automatically setting the focus to the editor when inside an iframe

This commit is contained in:
boxgaming 2024-02-01 17:46:40 -06:00
parent b169ba7b86
commit e28a7a89cf

View file

@ -161,7 +161,7 @@ var IDE = new function() {
}
});
}
if (appMode == "ide") {
if (appMode == "ide" && !inIframe()) {
editor.focus();
}