Skip to content

Instantly share code, notes, and snippets.

@gideonheilbron
Last active August 29, 2015 14:22
Show Gist options
  • Save gideonheilbron/2ee4898a6b6e7719083f to your computer and use it in GitHub Desktop.
Save gideonheilbron/2ee4898a6b6e7719083f to your computer and use it in GitHub Desktop.
Debounce
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
};
var affix = debounce(function() {
var scrollPosition = $(window).scrollTop()
, affixedElement = $('.header--primary');
if(scrollPosition) {
affixedElement.addClass('is-affixed');
} else {
affixedElement.removeClass('is-affixed');
}
}, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment