Slide 21
Slide 21 text
window.addEventListener('resize',function(e) {
var body = document.body;
var width = window.innerWidth;
if (width < 350) {
// implement small ideas here
}
else if (width < 750 &&
!body.classList.contains('article')) {
// implement big, non article page, ideas here
}
else {
// implement grand ideas here
}
});