Change queued AJAX to go async

This commit is contained in:
Nathan Gray 2013-11-20 23:40:26 +00:00
parent 565b28f18f
commit fd737f10dc

View File

@ -104,7 +104,7 @@ egw.extend('jsonq', egw.MODULE_GLOBAL, function() {
{
// TODO: Passing this to the "home" application looks quite ugly
var request = egw.json('home.queue', jobs_to_send, jsonq_callback, this)
request.sendRequest();
request.sendRequest(true);
}
}
}