mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
Fix collapse on hostname with "."
Fix "Error: Syntax error, unrecognized expression: [host=pc.local]"
This commit is contained in:
parent
cd940c99e5
commit
91598357dc
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@
|
||||||
function hide_host_instances(host) {
|
function hide_host_instances(host) {
|
||||||
var rows = $('table tr');
|
var rows = $('table tr');
|
||||||
|
|
||||||
host_rows = rows.filter('[host='+host+']');
|
host_rows = rows.filter("[host='"+host+"']");
|
||||||
host_rows.toggle();
|
host_rows.toggle();
|
||||||
$('span#collapse_host_instances_'+host).toggleClass("glyphicon-chevron-down").toggleClass("glyphicon-chevron-up");
|
$('span#collapse_host_instances_'+host).toggleClass("glyphicon-chevron-down").toggleClass("glyphicon-chevron-up");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue