I wrote my own jQuery swipe plugin that allows users to swipe through pages of cards by a specified number of cards each swipe. This plugin has been working great until I decided to modify it.
I was tracking by page position before, but needed to change it to track by the current first visible card instead.
Now I'm getting the following error all of a sudden:
Uncaught TypeError: Object #<HTMLDivElement> has no method 'set_card_limit'
This was my previous code:
(function($) {
var methods = {
...
set_page_limit: function (limit, callback) {
return this.each(function(){
this.set_page_limit(limit, callback);
};
},
...
};
...
function init(this_elem, opts) {
...
this_elem.set_page_limit = function (limit, callback) {
page_limit = limit;
if (page_i > page_limit) {
page_i = page_limit;
animate_to(pages[page_i], callback);
} else {
if (callback === undefined) callback = options.default_callback;
callback();
}
refresh_buttons();
};
...
};
})(jQuery);
The ONLY changes I've made have basically been changing the names of things from 'page' to 'card'.
(function($) {
var methods = {
...
set_card_limit: function (limit, callback) {
return this.each(function(){
this.set_card_limit(limit, callback);
};
},
...
};
...
function init(this_elem, opts) {
...
this_elem.set_card_limit = function (limit, callback) {
card_limit = limit;
if (card_i > card_limit - options.swipe_distance) {
card_i = card_limit - options.swipe_distance;
animate_to(cards[card_i], callback);
} else {
if (callback === undefined) callback = options.default_callback;
callback();
}
refresh_buttons();
};
...
};
})(jQuery);
I am verifying that these are the only changes using git diff. I cannot for the life of me see why that error is being thrown.