When starting ProjeQtOr V9.3.1 with the Safari browser version 15.0 the main editing area is displayed correctly (see picture 1).
After collapsing the left navigation menu (see picture 2)
the main editing area is shifted to the right (by about 3-4 cm) (see image 3).
After repeating the process several times, everything is displayed correctly again.
Picture sequence see attachment.
Sorry, we don't have apple device to test on Safari.
Do you have any browser issue logged in the console ?
Please find in the original ticket the trace file.
Hi,
Just had a llok on the web and found that Safari and Opera on iOS don't triger the onBeforeUnload() event.
About hanging, it may be due to some "sleep" function, added to wait until disconnection has been recorded on server.
You can try a workaround adding 1 line after 3273 of projeqtor.js,
function sleep(milliseconds) {
if (dojo.isSafari) return;
var start = new Date().getTime();
for (var i = 0; i milliseconds){
break;
}
}
}
