Tooltips for quick links.

The ipa_entity_quick_links() has been modified to show tooltips when
hovering on quick links.
This commit is contained in:
Endi S. Dewata 2010-10-04 12:51:51 -05:00 committed by Endi Sukma Dewata
parent f94a3d1751
commit ea334939ba

View File

@ -231,6 +231,7 @@ function ipa_entity_quick_links(tr, attr, value, entry_attrs) {
$("<a/>", {
href: "#details",
title: "Details",
click: function() {
var state = {};
state[obj_name+'-facet'] = 'details';
@ -247,9 +248,11 @@ function ipa_entity_quick_links(tr, attr, value, entry_attrs) {
var objs = attribute_members[attr_name];
for (var i = 0; i < objs.length; ++i) {
var m = objs[i];
var label = ipa_objs[m].label;
$("<a/>", {
href: '#'+m,
title: label,
click: function(m) {
return function() {
var state = {};