Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 1, 2019 15:57
Show Gist options
  • Save jlittlejohn/3099f32a589021075c89 to your computer and use it in GitHub Desktop.
Save jlittlejohn/3099f32a589021075c89 to your computer and use it in GitHub Desktop.
JS: Basic jQuery Plugin Boilerplate
!function($) {
var defaults = {
sectionContainer: "section",
};
$.fn.onepage_scroll = function(options) {
var settings = $.extend({}, defaults, options);
}
}($)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment