/* works along with the page/tags/pagination.html & page/templatetags/page_tags.py
 * allow ajax loading of querysets passing pagination, page & request objects to
 * the template context   ~jaymz

/* DISABLED AJAX PAGINATION FOR THE PRODUCTS-LIST PAGE */

/*
$(document).ready(function() {
    $('.pagination-controller').click(function(e) {
		e.preventDefault();
        $.ajax({
			'url' : $(this).attr('href'),
            'dataType' : 'html',
                success : function(response) {
                    //TODO: update all the .pageination-controller links and
                    // set new current state on bar
                    $('#product-list-results').html(response);
                }
            });
        });
    }
); */
