Skip to content

Commit

Permalink
up main files
Browse files Browse the repository at this point in the history
  • Loading branch information
fgl27 committed Mar 17, 2024
1 parent 566e50f commit ccc0bc4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release/githubio/js/main.js

Large diffs are not rendered by default.

39 changes: 38 additions & 1 deletion release/githubio/js/main_uncompressed.js
Original file line number Diff line number Diff line change
Expand Up @@ -23685,6 +23685,39 @@
updateStreamLogoValue = Play_data.data[9];
}

function Play_ResetStreamInfo() {
updateStreamDivValue = null;
updateStreamLogoValue = null;
streamTitle = null;
streamGame = null;
streamViewers = null;

updateLogoMainDiv = null;
updateLogoMainLogo = null;

updateLogoPPDiv = null;
updateLogoPPLogo = null;

streamTitle1 = null;
streamGame1 = null;
streamViewers1 = null;
streamTitle2 = null;
streamGame2 = null;
streamViewers2 = null;

for (var i = 0; i < 4; i++) {
streamTitleMulti[i] = null;
streamGameMulti[i] = null;
streamViewersMulti[i] = null;
streamAudioMulti[i] = null;
streamExtraMulti[i] = null;

updateStreamLogoMultiValue[i] = null;
updateStreamDivMultiValue[i] = null;
updateStreamExtraValue[i] = null;
}
}

var Play_updateStreamInfoGetId;

function Play_updateStreamInfoGet(theUrl, Is_play) {
Expand Down Expand Up @@ -24231,7 +24264,9 @@

if (closePlayer) {
Play_isOn = false;
if (Play_MultiEnable) Play_controls[Play_MultiStream].enterKey(false);
if (Play_MultiEnable) {
Play_controls[Play_MultiStream].enterKey(false);
}
}

if (!Play_isEndDialogVisible() || closePlayer) {
Expand Down Expand Up @@ -24293,6 +24328,8 @@
if (clearChat) ChatLive_Clear(0);

Play_IsWarning = false;

Play_ResetStreamInfo();
}

function Play_showBufferDialog() {
Expand Down

0 comments on commit ccc0bc4

Please sign in to comment.