CanaryNoir
8/20/2014 - 1:46 PM

resize

resize

// RELOAD ON RESIZE 
// reload page on resize to sort out css changes to slider nav
    $(window).resize(function() {
      if($(window).width() > 750){ // to keep jeremy's phone from wigging ;)
        location.href = location.href; 
      }
	});