diff --git a/Netdisco/public/javascripts/netdisco.js b/Netdisco/public/javascripts/netdisco.js index 098caa8b..9556e9fc 100644 --- a/Netdisco/public/javascripts/netdisco.js +++ b/Netdisco/public/javascripts/netdisco.js @@ -45,7 +45,7 @@ function do_search (event, tab) { // in case of slow data load, let the user know $(target).html( - '

Waiting for results...

' + '
Waiting for results...
' ); // submit the query and put results into the tab pane @@ -53,14 +53,14 @@ function do_search (event, tab) { function(response, status, xhr) { if (status !== "success") { $(target).html( - '
' + - '

Search failed! Please contact your site administrator.

' + '
' + + 'Search failed! Please contact your site administrator.
' ); return; } if (response === "") { $(target).html( - '

No matching records.

' + '
No matching records.
' ); }