KyleNumann
6/20/2016 - 7:48 PM

Sticky Kit problem dissapear on bottom out - FIX

Sticky Kit problem dissapear on bottom out - FIX

/* Sticky Elements */
$(".sticky").stick_in_parent({
  parent: '.row'
})
.on("sticky_kit:bottom", function(e) {
    // console.log("has unstuck!", e.target);
    $(e.target).parent().css('position', 'static');
})
.on("sticky_kit:unbottom", function(e) {
    // console.log("has unstuck!", e.target);
    $(e.target).parent().css('position', '');
});