Merge branch '53-no-ejecuta-custom-responses' into 'develop'

Show unreachable host reponse when ping from custom responses - #53

See merge request !148
This commit is contained in:
Enrique Camargo 2017-02-10 16:56:55 +01:00
commit bb1c4f9424
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ function perform_response(target) {
dataType: 'html',
success: function (data) {
if (data == '') {
$('#response_out').html('<i>No output</i>');
$('#response_out').html('<i>Unreachable host</i>');
}
else {
var out = data.replace(/[\n|\r]/g, "<br>");