Show flavor tooltip on mouse hover

We show flavor details on instances page on click. Since we don't have
flavor details page we can show tooltip on mouse hover event.

Change-Id: Ia2f3268ebfb2ccd675ab7176bf942cf96f12fedf
This commit is contained in:
Ivan Kolodyazhny 2019-02-26 19:20:55 +02:00
parent 2c5afc7f01
commit 29738534f4
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ $(function () {
var $flavor = $("#flavor_details_{{ id }}");
// NOTE(tsufiev): check this in case this template is used in network topology -> delete instance
if ( $flavor.popover ) {
$flavor.popover({html:true});
$flavor.popover({html:true, trigger: "hover"});
}
});
</script>