pro-common.js 396 B

123456789101112
  1. function calc_my_app_height() {
  2. //find the height of the internal page
  3. // myapp_wrapper
  4. const the_height=
  5. document.getElementById('the_iframe').contentWindow.$('.my-app .myapp_wrapper').height()
  6. //change the height of the iframe
  7. document.getElementById('the_iframe').height=
  8. the_height;
  9. document.getElementById('the_iframe').style.overflow = "hidden";
  10. }