Last active
May 1, 2019 15:57
-
-
Save jlittlejohn/3099f32a589021075c89 to your computer and use it in GitHub Desktop.
JS: Basic jQuery Plugin Boilerplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!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