Skip to content

Commit

Permalink
Merge pull request metafizzy#61 from gabrielsomoza/master
Browse files Browse the repository at this point in the history
Small Core Fixes
  • Loading branch information
lukeshumard committed Jun 24, 2011
2 parents a9df643 + c0a7aaf commit eb2113e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jquery.infinitescroll.js
Expand Up @@ -439,8 +439,8 @@
case 'html+callback':

instance._debug('Using HTML via .load() method');
box.load(desturl + ' ' + opts.itemSelector, null, function infscr_ajax_callback(jqXHR, textStatus) {
instance._loadcallback(box, jqXHR.responseText);
box.load(desturl + ' ' + opts.itemSelector, null, function infscr_ajax_callback(responseText) {
instance._loadcallback(box, responseText);
});

break;
Expand Down Expand Up @@ -498,7 +498,7 @@
// Unbind from scroll
unbind: function infscr_unbind() {
this._binding('unbind');
},
}

}

Expand Down

0 comments on commit eb2113e

Please sign in to comment.