Removed some jQuery.ajax() timeouts

This commit is contained in:
Alejandro Gallardo Escobar 2015-06-11 18:39:02 +02:00
parent 11d50f06ba
commit 5963f47432

View File

@ -2778,7 +2778,6 @@ function showPreviewStaticGraph(staticGraph) {
url: url_ajax, url: url_ajax,
data: parameter, data: parameter,
dataType: 'json', dataType: 'json',
timeout: 10000,
error: function (xhr, textStatus, errorThrown) { error: function (xhr, textStatus, errorThrown) {
$("#preview").empty(); $("#preview").empty();
}, },
@ -2821,7 +2820,6 @@ function showPreviewIcon(icon) {
data: params.join ("&"), data: params.join ("&"),
type: 'POST', type: 'POST',
url: url_ajax, url: url_ajax,
timeout: 10000,
error: function (xhr, textStatus, errorThrown) { error: function (xhr, textStatus, errorThrown) {
$("#preview").empty(); $("#preview").empty();
}, },