mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-23 22:55:23 +00:00
Merge pull request #206 from krp-kp/master
Fix collapse on hostname with "."
This commit is contained in:
commit
c04596f078
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@
|
|||
function hide_host_instances(host) {
|
||||
var rows = $('table tr');
|
||||
|
||||
host_rows = rows.filter('[host='+host+']');
|
||||
host_rows = rows.filter("[host='"+host+"']");
|
||||
host_rows.toggle();
|
||||
$('span#collapse_host_instances_'+host).toggleClass("glyphicon-chevron-down").toggleClass("glyphicon-chevron-up");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue