Skip to content

Instantly share code, notes, and snippets.

@danro
Created February 26, 2016 02:06
Show Gist options
  • Save danro/54bdf6de2d573e340825 to your computer and use it in GitHub Desktop.
Save danro/54bdf6de2d573e340825 to your computer and use it in GitHub Desktop.
Webflow integration with fullpage.js
<script>
// Initialize fullpage plugin on document ready
Webflow.push(function() {
$('#fullpage').fullpage();
});
// Define module for Editor compatibility
Webflow.define('fullpage-destroy', function() {
return {
destroy: function() {
$.fn.fullpage.destroy('all');
}
};
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment