Merge "hide tooltip after select field is selected"

This commit is contained in:
Jenkins 2012-03-12 02:37:37 +00:00 committed by Gerrit Code Review
commit 5c7ea2254b

View File

@ -71,6 +71,9 @@ horizon.addInitFunction(function () {
trigger: 'focus',
title: getTwipsyTitle
});
$(document).on('change', '.form-field select', function() {
$(this).tooltip('hide');
});
// Hide the text for js-capable browsers
$('span.help-block').hide();