Skip to content

Instantly share code, notes, and snippets.

@DaBs
Last active February 1, 2017 01:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DaBs/a1d6014d5c04a10bb5fa99983b297a22 to your computer and use it in GitHub Desktop.
Save DaBs/a1d6014d5c04a10bb5fa99983b297a22 to your computer and use it in GitHub Desktop.
var elems = document.querySelectorAll('.element-selector');
window.addEventListener('resize', function(e) {
elems.forEach(function(elem){
elem.clientHeight = window.innerHeight;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment