diff options
| author | sD <stoned@derpymail.org> | 2020-04-25 18:55:02 +0200 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-04-25 18:55:02 +0200 |
| commit | 9ba6090591afa56ce0ee72469c5874b7b8303e9a (patch) | |
| tree | 6a0102ad4b4d49110f3f7ad2b456b62543d515bf | |
| parent | e78a2903ab56b1e6d1d0aa3e22d9e7fdef907a16 (diff) | |
don't use the emoji for the spinner
| -rw-r--r-- | webAO/client.html | 2 | ||||
| -rw-r--r-- | webAO/client.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client.html b/webAO/client.html index e3e835c..2878778 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -83,7 +83,7 @@ </div> <div id="client_chat"> <p id="client_inner_chat"></p> - <div id="client_chatwaiting">▶</div> + <div id="client_chatwaiting">►</div> </div> </div> <img id="client_testimony" alt="Testimony overlay" style="display: none;" onerror="imgError(this);"> diff --git a/webAO/client.js b/webAO/client.js index 1913d71..cce9b01 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -1821,7 +1821,7 @@ async changeBackground(position) { if (this.textnow === this.chatmsg.content) { charSprite.src = this.silentSprite; charSprite.style.display = ""; - waitingBox.innerHTML = "▶"; + waitingBox.innerHTML = "►"; this._animating = false; clearTimeout(this.updater); } |
