b436d9047b
scripts holster the pull gun out and new mlo
27 lines
533 B
JavaScript
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');
|
|
|
|
});
|
|
}
|
|
});
|
|
|