Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Could it be caused by a change in the HTML? – Jan Dvorak Nov 18 '12 at 20:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.