app/Plugin/RemisePayment42/Resource/assets/js/remise_wait_screen.js line 1

Open in your IDE?
  1. function remise_waitscreen() {
  2.     $('#dialog-area').appendTo('body');
  3.     var maskHeight = $(document).height();
  4.     var maskWidth = $(document).width();
  5.     var dialogTop = ($(window).height()/2) - ($('#dialog-box').height());
  6.     var dialogLeft = (maskWidth/2) - ($('#dialog-box').width()/2);
  7.     $('#dialog-overlay').css({height:maskHeight, width:maskWidth, zIndex:9998}).show();
  8.     $('#dialog-box').css({top:dialogTop, left:dialogLeft, zIndex:9999}).show();
  9.     $('#dialog-message').html();
  10.     scroll(0,0);
  11. }