Skip to content
Snippets Groups Projects
Commit c827cefa authored by tbrehm's avatar tbrehm
Browse files

Removed some debug output from the ajax alert windows if a ajax request fails.

parent b445c6cb
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,7 @@ function submitForm(formname,target) { ...@@ -105,7 +105,7 @@ function submitForm(formname,target) {
}, },
failure: function(o) { failure: function(o) {
var parts = o.responseText.split(':'); var parts = o.responseText.split(':');
alert('Ajax Request was not successful. '+parts[1]); alert('Ajax Request was not successful.');
} }
} }
...@@ -145,7 +145,7 @@ function submitUploadForm(formname,target) { ...@@ -145,7 +145,7 @@ function submitUploadForm(formname,target) {
} }
}, },
failure: function(o) { failure: function(o) {
alert('Ajax Request was not successful. 1'); alert('Ajax Request was not successful.');
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment