Reset sticky component before leaving the page using Turbolinks

This commit is contained in:
Julian Herrero
2019-02-04 16:59:09 +01:00
committed by decabeza
parent 0237565ece
commit eca4d773a0

View File

@@ -4,3 +4,8 @@ App.FoundationExtras =
$(document).foundation()
$(window).trigger "load.zf.sticky"
$(window).trigger "resize"
clearSticky = ->
$("[data-sticky]").foundation("destroy") if $("[data-sticky]").length
$(document).on("page:before-unload", clearSticky)