Skip to content

Commit

Permalink
update from main
Browse files Browse the repository at this point in the history
  • Loading branch information
codefrau committed Oct 26, 2023
1 parent a6f3e0f commit 78e64fa
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions squeak.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@
Object.extend(Squeak,
"version", {
// system attributes
vmVersion: "SqueakJS 1.1.0",
vmDate: "2023-10-23", // Maybe replace at build time?
vmVersion: "SqueakJS 1.1.1",
vmDate: "2023-10-24", // Maybe replace at build time?
vmBuild: "unknown", // or replace at runtime by last-modified?
vmPath: "unknown", // Replace at runtime
vmFile: "vm.js",
Expand Down Expand Up @@ -54596,9 +54596,10 @@
// we don't try to enable it again in the next event
function fullscreenChange(fullscreen) {
display.fullscreen = fullscreen;
box.style.background = fullscreen ? 'black' : '';
if (options.header) options.header.style.display = fullscreen ? 'none' : '';
if (options.footer) options.footer.style.display = fullscreen ? 'none' : '';
var fullwindow = fullscreen || options.fullscreen;
box.style.background = fullwindow ? 'black' : '';
if (options.header) options.header.style.display = fullwindow ? 'none' : '';
if (options.footer) options.footer.style.display = fullwindow ? 'none' : '';
if (options.fullscreenCheckbox) options.fullscreenCheckbox.checked = fullscreen;
setTimeout(window.onresize, 0);
}
Expand Down

0 comments on commit 78e64fa

Please sign in to comment.