issue #11 채널바로가기 팝업에서 리턴키 눌렀을때 채널 변경되는 문제 수정.

This commit is contained in:
Paul Kim
2023-12-19 16:24:18 +09:00
parent 1105f3f562
commit 527cdd58bb

View File

@@ -3410,7 +3410,20 @@ HotelTV.ui_appfull = (function() {
return -1; return -1;
} }
} }
else if ( _action=="destory") else if ( _action=="exitWithoutChchange")
{
// 기존 레코드 제거
if (_elTvScutChlistRecord.children('tr').length) {
_elTvScutChlistRecord.children('tr').remove();
}
if ( _elTvScutRoot.css('display') != 'none') {
_elTvScutRoot.fadeOut(500);
}
return 0;
}
else if ( _action=="exitWithChchange")
{ {
// 기존 레코드 제거 // 기존 레코드 제거
if (_elTvScutChlistRecord.children('tr').length) { if (_elTvScutChlistRecord.children('tr').length) {
@@ -4381,12 +4394,12 @@ HotelTV.ui_appfull = (function() {
if (event.keyCode == gRmtKey.back) { if (event.keyCode == gRmtKey.back) {
// TV 메뉴를 종료하고 메인 메뉴로 이동 // TV 메뉴를 종료하고 메인 메뉴로 이동
//__fxn_exitTvMenu(); //__fxn_exitTvMenu();
__uifxn_AppFull_TVDrawShortCutList(false, "destory", event.keyCode); __uifxn_AppFull_TVDrawShortCutList(false, "exitWithoutChchange", event.keyCode);
_state.menu.stage.cur = _state.menu.stage.prev; _state.menu.stage.cur = _state.menu.stage.prev;
_state.menu.stage.prev = null; _state.menu.stage.prev = null;
} else if (event.keyCode == gRmtKey.enter) { } else if (event.keyCode == gRmtKey.enter) {
// 번호키를 이용한 채널 선택 팝업 삭제 // 번호키를 이용한 채널 선택 팝업 삭제
__uifxn_AppFull_TVDrawShortCutList(false, "destory", event.keyCode); __uifxn_AppFull_TVDrawShortCutList(false, "exitWithChchange", event.keyCode);
_state.menu.stage.cur = _state.menu.stage.prev; _state.menu.stage.cur = _state.menu.stage.prev;
_state.menu.stage.prev = null; _state.menu.stage.prev = null;