Skip to content

Instantly share code, notes, and snippets.

@zetlen
Forked from anonymous/gist:82ca402ad9d6f50b14cf
Last active August 29, 2015 14:28
Show Gist options
  • Save zetlen/c06bd760e7cc4b1f95b1 to your computer and use it in GitHub Desktop.
Save zetlen/c06bd760e7cc4b1f95b1 to your computer and use it in GitHub Desktop.
$(window).bind("load resize scroll",function(){
windowWidth2 = jQuery(window).width();
var maxInRow = [];
if (windowWidth2 > 767)
{
maxInRow.length = 0;
maxInRow.push(12);
}
if (windowWidth2 < 767)
{
maxInRow.length = 0;
maxInRow.push(4);
}
//console.log(maxInRow2);
maxInRow2 = maxInRow;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment