You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
307 B

11 years ago
yii.gii = (function ($) {
return {
init: function () {
$('.hint-block').each(function() {
var $hint = $(this);
$hint.parent().find('input,select,textarea').popover({
html: true,
trigger: 'focus',
placement: 'right',
content: $hint.html()
});
});
}
};
})(jQuery);