project.js 286 B

123456789
  1. /**
  2. * Used to resize the iframe for embebbed projects.
  3. *
  4. * @param obj The iframe.
  5. */
  6. function resizeIframe(obj) {
  7. obj.style.height = (obj.contentWindow.document.body.scrollHeight + 100) + 'px';
  8. obj.style.width = (obj.contentWindow.document.body.scrollWidth + 100) + 'px';
  9. }