Files
Elite-Gaming-FiveM/resources/holstersounds/html/app.js
T
KingMcDonalds b436d9047b fix and remove something add new
scripts holster the pull gun out  and new mlo
2024-09-20 13:26:29 -07:00

27 lines
533 B
JavaScript

window.addEventListener('message', function(e) {
$("#container").stop(false, true);
if (e.data.displayWindow == 'true') {
$("#container").css('display', 'flex');
$("#container").animate({
bottom: "25%",
opacity: "1.0"
},
700, function() {
});
} else {
$("#container").animate({
bottom: "-50%",
opacity: "0.0"
},
700, function() {
$("#container").css('display', 'none');
});
}
});