diff --git a/xCAT-UI/js/custom/zvmUtils.js b/xCAT-UI/js/custom/zvmUtils.js index cbb6c2830..50a0f74b2 100644 --- a/xCAT-UI/js/custom/zvmUtils.js +++ b/xCAT-UI/js/custom/zvmUtils.js @@ -1925,7 +1925,7 @@ function createZProvisionExisting(inst) { // Create operating system image input var os = $('
'); var osLabel = $(''); - var osInput = $(''); + var osInput = $(''); // Get image names on focus osInput.one('focus', function(){ var imageNames = $.cookie('ImageNames'); @@ -1952,6 +1952,14 @@ function createZProvisionExisting(inst) { bootMethod.append(methodSelect); provExisting.append(bootMethod); + // Generate tooltips + provExisting.find('div input[title]').tooltip({ + position: "center right", // Place tooltip on the right edge + offset: [-2, 10], // A little tweaking of the position + effect: "fade", // Use the built-in fadeIn/fadeOut effect + opacity: 0.7 // Custom opacity setting + }); + /** * Provision existing */