Skip to content

Commit

Permalink
Merge pull request bocoup#26 from bocoup/return-ajax
Browse files Browse the repository at this point in the history
PaginatedCollection "sync" override should return jqXHR for observability
  • Loading branch information
iros committed Jan 24, 2012
2 parents 8b25b55 + 8e6723e commit ab39b6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/modules/startup.js
Expand Up @@ -130,7 +130,7 @@
}

};
$.ajax(extended);
return $.ajax(extended);
}
};

Expand Down Expand Up @@ -164,7 +164,7 @@
}(fetch);

params.success = success;
$.ajax(params);
return $.ajax(params);
}
}

Expand Down

0 comments on commit ab39b6a

Please sign in to comment.