summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-10-04 12:51:51 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2010-10-04 18:48:13 -0400
commitea334939bac184d4dba1a040746c773ae42ddf6f (patch)
tree9362d909686455b7f6723d488d481aa7a2f5a9f0 /install
parentf94a3d1751aedfabe2ba327511dc8bbe2519a27f (diff)
downloadfreeipa-ea334939bac184d4dba1a040746c773ae42ddf6f.tar.gz
freeipa-ea334939bac184d4dba1a040746c773ae42ddf6f.tar.xz
freeipa-ea334939bac184d4dba1a040746c773ae42ddf6f.zip
Tooltips for quick links.
The ipa_entity_quick_links() has been modified to show tooltips when hovering on quick links.
Diffstat (limited to 'install')
-rw-r--r--install/static/entity.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/install/static/entity.js b/install/static/entity.js
index 820c5670d..c628edd07 100644
--- a/install/static/entity.js
+++ b/install/static/entity.js
@@ -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 = {};