shadok-ai 0.2.70 → 0.2.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/index.html +6 -0
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -4243,6 +4243,12 @@
|
|
|
4243
4243
|
// ended would come back to life against the *new* session and resend
|
|
4244
4244
|
// yesterday's text forced. A new session answers no old question.
|
|
4245
4245
|
retirePaceConfirm(t);
|
|
4246
|
+
// A reload broadcasts a transient "working" (restart in progress) that is
|
|
4247
|
+
// closed by this "ready" — the fresh process is idle again. Drop that
|
|
4248
|
+
// highlight here (setTabMood repaints the favicon too); a real turn
|
|
4249
|
+
// re-asserts it with its own "working". Without this the channel stayed
|
|
4250
|
+
// lit "working" after every reload.
|
|
4251
|
+
if (t.btnEl.classList.contains("working")) setTabMood(t, null);
|
|
4246
4252
|
setTabState(t, "ready", "ready");
|
|
4247
4253
|
persistChannels();
|
|
4248
4254
|
// Reattaching between turns: restore the last turn's time rather than
|