issue #10 #11 Add exception routine for power off by remote with hdmi input mode. Fix news doesn't show correctly after hdmi input disconnected.

This commit is contained in:
Paul Kim
2024-05-01 16:16:22 +09:00
parent 1880fae37a
commit 0dee6a9a92
7 changed files with 2213 additions and 1314 deletions

View File

@@ -57,6 +57,13 @@ var HotelTV = HotelTV || {
'scroll_offset': null,
},
},
'external_input':{
'connected': false,
'last_input': {
'type': 0,
'index': 0
}
},
'hotkey': {
"mm": {}
},
@@ -664,7 +671,7 @@ HotelTV.LoadAppFull = async function() {
//STEP#01: Load session info
HotelTV.dbginfo = await JSON.parse(sessionStorage.getItem("dbginfo"));
//SETP#02::> Set Debug Options
__fxn_Set_DebugOpt(true, 'native', true);
__fxn_Set_DebugOpt(false, 'native', true);
HotelTV.devinfo = await JSON.parse(sessionStorage.getItem("devinfo"));
HotelTV.svrinfo = await JSON.parse(sessionStorage.getItem("svrinfo"));