diff --git a/public/js/Room.js b/public/js/Room.js index 39c69f75..7f54d5d4 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -1495,6 +1495,12 @@ function whiteboardAddObj(type) { input: 'text', showCancelButton: true, confirmButtonText: 'OK', + showClass: { + popup: 'animate__animated animate__fadeInDown', + }, + hideClass: { + popup: 'animate__animated animate__fadeOutUp', + }, }).then((result) => { if (result.isConfirmed) { let wbCanvasImgURL = result.value; @@ -1522,6 +1528,12 @@ function whiteboardAddObj(type) { showDenyButton: true, confirmButtonText: `OK`, denyButtonText: `Cancel`, + showClass: { + popup: 'animate__animated animate__fadeInDown', + }, + hideClass: { + popup: 'animate__animated animate__fadeOutUp', + }, }).then((result) => { if (result.isConfirmed) { let wbCanvasImg = result.value; @@ -1550,6 +1562,12 @@ function whiteboardAddObj(type) { input: 'text', showCancelButton: true, confirmButtonText: 'OK', + showClass: { + popup: 'animate__animated animate__fadeInDown', + }, + hideClass: { + popup: 'animate__animated animate__fadeOutUp', + }, }).then((result) => { if (result.isConfirmed) { let wbCanvasText = result.value;