This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file is used to be tracked and identified by https://lrc-maker.github.io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
HELP_STRING=$(cat <<- END | |
usage: build_wasm.sh | |
Build script for combining a Macroquad project with wasm-bindgen, | |
allowing integration with the greater wasm-ecosystem. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadMoreMessages() { | |
console.log("loading more messages"); | |
const buttons = document.querySelectorAll("button[type=button]"); | |
for(let i = 0; i < buttons.length; i++) { | |
if(buttons[i].innerText == "LOAD MORE MESSAGES") { | |
buttons[i].click(); | |
console.log("loaded more messages"); | |
} | |
} | |
} |