Skip to content

Instantly share code, notes, and snippets.

@talee
Created October 14, 2016 13:49
Show Gist options
  • Save talee/83fe51616053315dcb3bd89ab46f4f89 to your computer and use it in GitHub Desktop.
Save talee/83fe51616053315dcb3bd89ab46f4f89 to your computer and use it in GitHub Desktop.
window.cardListHeight = _.debounce(function() {
const el = document.querySelector('.card-list');
el.style.height = `${document.documentElement.clientHeight - el.getBoundingClientRect().top}px`;
}, 300);
window.addEventListener('resize', function(){window.cardListHeight()});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment