Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Stop defaults from being overwritten #104

Merged
merged 1 commit into from Jun 25, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion jquery.sticky.js
Expand Up @@ -71,7 +71,7 @@
},
methods = {
init: function(options) {
var o = $.extend(defaults, options);
var o = $.extend({}, defaults, options);
return this.each(function() {
var stickyElement = $(this);

Expand Down