From 28f6946b3a6ce7cbc609cceba02d4fd8c9309f14 Mon Sep 17 00:00:00 2001 From: ZXMushroom63 Date: Thu, 24 Oct 2024 18:09:35 +0800 Subject: [PATCH] add the semicolons --- examplemods/f11fix.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examplemods/f11fix.js b/examplemods/f11fix.js index 722c5a2..7b17bf1 100644 --- a/examplemods/f11fix.js +++ b/examplemods/f11fix.js @@ -4,9 +4,9 @@ var oldF11 = HTMLElement.prototype.requestFullscreen; HTMLElement.prototype.requestFullscreen = function () { if (this instanceof HTMLBodyElement) { - oldF11.apply(this, []) + oldF11.apply(this, []); } else { - document.body.requestFullscreen() + document.body.requestFullscreen(); } } })(); \ No newline at end of file