Per the question, does restangular have some kind of switch that could be used to turn on synchronous way for sending requests? like
var jqxhr = $.ajax({
url: $scope.baseURL,
data: {
name: $scope.name
},
type: "GET",
dataType: "json",
**async: false,**
})
.done(function(data, textStatus, jqXHR) {...})
.fail(function(data, textStatus, jqXHR) {...}
);
Thanks a lot!