mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-27 21:48:31 +00:00
Get icons back on shell.html
It seems there is some related issue on emscripten side... but I'll keep the icons here despite not displayed properly for the moment.
This commit is contained in:
@@ -173,8 +173,8 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
|
|||||||
<div class="emscripten" id="status">Downloading...</div>
|
<div class="emscripten" id="status">Downloading...</div>
|
||||||
|
|
||||||
<span id='controls'>
|
<span id='controls'>
|
||||||
<span><input type="button" value="FULLSCREEN" onclick="Module.requestFullscreen(false, false)"></span>
|
<span><input type="button" value="🖵 FULLSCREEN" onclick="Module.requestFullscreen(false, false)"></span>
|
||||||
<span><input type="button" id="btn-audio" value="AUDIO OFF" onclick="toggleAudio()"></span>
|
<span><input type="button" id="btn-audio" value="🔇 SUSPEND" onclick="toggleAudio()"></span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div class="emscripten">
|
<div class="emscripten">
|
||||||
@@ -305,7 +305,7 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
|
|||||||
construct(target, args) {
|
construct(target, args) {
|
||||||
const result = new target(...args);
|
const result = new target(...args);
|
||||||
audioContexList.push(result);
|
audioContexList.push(result);
|
||||||
if (result.state == "suspended") audioBtn.value = "AUDIO ON";
|
if (result.state == "suspended") audioBtn.value = "🔈 RESUME";
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -318,8 +318,8 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
|
|||||||
else if (ctx.state == "running") ctx.suspend();
|
else if (ctx.state == "running") ctx.suspend();
|
||||||
});
|
});
|
||||||
|
|
||||||
if (resumed) audioBtn.value = "AUDIO OFF";
|
if (resumed) audioBtn.value = "🔇 SUSPEND";
|
||||||
else audioBtn.value = "AUDIO ON";
|
else audioBtn.value = "🔈 RESUME";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{{{ SCRIPT }}}
|
{{{ SCRIPT }}}
|
||||||
|
Reference in New Issue
Block a user