ent 9117 mouseover service tree

This commit is contained in:
edu.corral 2022-10-10 16:16:00 +02:00
parent 7a2f8fdef0
commit 40c9ed762c
1 changed files with 5 additions and 5 deletions

View File

@ -858,11 +858,12 @@ var TreeController = {
$content.append($statusImage);
}
var image_tooltip =
'<span><img class="invert_filter" src="' +
(controller.baseURL.length > 0 ? controller.baseURL : "") +
'images/help.png" class="img_help" title="' +
'<span><img class="invert_filter forced_title" data-title="' +
(element.title ? element.title : element.name) +
'" alt="' +
'" data-use_title_for_force_title="1" src="' +
(controller.baseURL.length > 0 ? controller.baseURL : "") +
'images/help.png" class="img_help" ' +
' alt="' +
element.name +
'"/></span> ';
@ -883,7 +884,6 @@ var TreeController = {
window.location.href = element.serviceDetail;
})
.css("cursor", "pointer");
$content.append($serviceDetailImage);
$content.append(" " + image_tooltip);