From 29738534f4d9045e289a182554d6243c14e685df Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Tue, 26 Feb 2019 19:20:55 +0200 Subject: [PATCH] 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 --- .../project/instances/templates/instances/_instance_flavor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html b/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html index 476ef8c3e0..5f0b7cc960 100644 --- a/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html +++ b/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html @@ -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"}); } });