issue #11 Adjust ui font size.

This commit is contained in:
Paul Kim
2024-03-21 12:19:23 +09:00
parent 93dae53e28
commit f79dc7e06b
2 changed files with 26 additions and 16 deletions

View File

@@ -2065,6 +2065,7 @@ HotelTV.ui_appfull = (function() {
$('.main').addClass("depth_mm");
__uifxn_AppFull_HotKey_ShowBtnOnMM(true);
__uifxn_AppFull_TopWidjetShow(true);
_state.menu.stage.prev = null;
});
}, 500);
}
@@ -2115,6 +2116,7 @@ HotelTV.ui_appfull = (function() {
$('.main').addClass("depth_mm");
__uifxn_AppFull_HotKey_ShowBtnOnMM(true);
__uifxn_AppFull_TopWidjetShow(true);
_state.menu.stage.prev = null;
});
}, 500);
}
@@ -2137,7 +2139,7 @@ HotelTV.ui_appfull = (function() {
_state.menu.stage.cur = "amenity_ctgy_item_cart";
__uifxn_AppFull_DrawAmUserGuide("amenity_ctgy_item_cart");
} else {
HotelTV.ui_utils.ShowNotificationMsgBalloon(_trTbl.system.ott_service_not_ready[_state.lang], 5);
HotelTV.ui_utils.ShowNotificationMsgBalloon(_trTbl.ui.amenity.message.invalidCategory[_state.lang], 5);
}
}
} else if (_state.menu.stage.cur == "amenity_ctgy_item_cart") {
@@ -3598,6 +3600,7 @@ HotelTV.ui_appfull = (function() {
$('.main').addClass("depth_mm");
__uifxn_AppFull_HotKey_ShowBtnOnMM(true);
__uifxn_AppFull_TopWidjetShow(true);
_state.menu.stage.prev = null;
});
}, 500);
}
@@ -3647,6 +3650,7 @@ HotelTV.ui_appfull = (function() {
$('.main').addClass("depth_mm");
__uifxn_AppFull_HotKey_ShowBtnOnMM(true);
__uifxn_AppFull_TopWidjetShow(true);
_state.menu.stage.prev = null;
});
}, 500);
}
@@ -3669,7 +3673,7 @@ HotelTV.ui_appfull = (function() {
_state.menu.stage.cur = "roomservice_ctgy_item_cart";
__uifxn_AppFull_DrawRsUserGuide("roomservice_ctgy_item_cart");
} else {
HotelTV.ui_utils.ShowNotificationMsgBalloon(_trTbl.system.ott_service_not_ready[_state.lang], 5);
HotelTV.ui_utils.ShowNotificationMsgBalloon(_trTbl.ui.roomservice.message.invalidCategory[_state.lang], 5);
}
}
} else if (_state.menu.stage.cur == "roomservice_ctgy_item_cart") {
@@ -6724,6 +6728,7 @@ HotelTV.ui_appfull = (function() {
}
} else if (_evt.keyCode == gRmtKey.yellow) {
// YELLOW BUTTON
console.log("YELLOW::>");
if ("yellow" in _state.hotkey.mm) {
$('.guide>.tips').stop().animate({ backgroundColor: "rgba(0,0,0,0.8)" }, 500, function() {
if (_state.hotkey.mm.yellow.type == "brochure") {
@@ -6734,10 +6739,12 @@ HotelTV.ui_appfull = (function() {
});
} else if (_state.hotkey.mm.yellow.type == "amenity") {
if (_opening.amenity) {
console.log("YELLOW::>AMENITY");
__uifxn_AppFull_BuildAmenity();
}
} else if (_state.hotkey.mm.yellow.type == "roomservice") {
if (_opening.roomService) {
console.log("YELLOW::>ROOMSERVICEC");
__uifxn_AppFull_BuildRoomservice();
}
}
@@ -6745,6 +6752,7 @@ HotelTV.ui_appfull = (function() {
HotelTV.api.ReportEvent([{'power': true, 'location':{'conId':_state.hotkey.mm['yellow'].id}}])
}
} else if (_evt.keyCode == gRmtKey.blue) {
console.log("BLUE::>");
// BLUE BUTTON
if ("blue" in _state.hotkey.mm) {
$('.guide>.tips').stop().animate({ backgroundColor: "rgba(0,0,0,0.8)" }, 500, function() {
@@ -6756,10 +6764,12 @@ HotelTV.ui_appfull = (function() {
});
} else if (_state.hotkey.mm.blue.type == "amenity") {
if (_opening.amenity) {
console.log("BLUE::>AMENITY");
__uifxn_AppFull_BuildAmenity();
}
} else if (_state.hotkey.mm.blue.type == "roomservice") {
if (_opening.roomService) {
console.log("BLUE::>ROOMSERVICE");
__uifxn_AppFull_BuildRoomservice();
}
}