Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var _pc_resizeIFrame = function(iframe) {
  2. iframe.height = iframe.contentDocument.body.scrollHeight;
  3. }
  4.  
  5. document.querySelectorAll(".pc-iframe").forEach(function(iframe) {
  6. window.onload = function () {
  7. _pc_resizeIFrame(iframe);
  8. };
  9. window.onresize = function () {
  10. _pc_resizeIFrame(iframe);
  11. };
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement