Skip to content

Instantly share code, notes, and snippets.

@Tethik
Last active August 29, 2015 14:03
Show Gist options
  • Save Tethik/3ae7e1c188c4503bf5c0 to your computer and use it in GitHub Desktop.
Save Tethik/3ae7e1c188c4503bf5c0 to your computer and use it in GitHub Desktop.
AngularJS Autoresizing iframe
if (parent && window.frameElement)
$interval(function () {
window.frameElement.style.height = (document.body.offsetHeight + 60) + "px";
}, 10);
@Tethik
Copy link
Author

Tethik commented Jul 2, 2014

Obviously, replace $interval with setInterval in normal js. No need for angular.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment