Skip to content

Commit

Permalink
Fix formatting of #262
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjbradshaw committed Oct 1, 2015
1 parent 3074bc4 commit 25a16fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/iframeResizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@
position = JSON.stringify({
clientHeight: Math.max(document.documentElement.clientHeight, window.innerHeight || 0),
clientWidth: Math.max(document.documentElement.clientWidth, window.innerWidth || 0),
offsetLeft: parseInt(iFramePosition.left - bodyPosition.left, 10),
offsetTop: parseInt(iFramePosition.top - bodyPosition.top, 10),
scrollLeft: window.pageXOffset,
scrollTop: window.pageYOffset
offsetLeft: parseInt(iFramePosition.left - bodyPosition.left, 10),
scrollTop: window.pageYOffset,
scrollLeft: window.pageXOffset
});

trigger('Send Page Info','pageInfo:' + position, settings[iframeId].iframe, iframeId);
Expand Down

0 comments on commit 25a16fb

Please sign in to comment.