From 8e6723eb583f71ccc18bc8a63117b9a2755b1e50 Mon Sep 17 00:00:00 2001 From: "adam j. sontag" Date: Mon, 23 Jan 2012 20:02:15 -0500 Subject: [PATCH] The overrides to "sync" the PaginatedCollection should return the $.ajax object so deferred methods can be chained to it, if necessary --- app/modules/startup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/modules/startup.js b/app/modules/startup.js index 1864b8a..72d005a 100644 --- a/app/modules/startup.js +++ b/app/modules/startup.js @@ -130,7 +130,7 @@ } }; - $.ajax(extended); + return $.ajax(extended); } }; @@ -164,7 +164,7 @@ }(fetch); params.success = success; - $.ajax(params); + return $.ajax(params); } }