diff options
author | Adam Young <ayoung@redhat.com> | 2010-09-17 20:30:41 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-09-20 12:11:33 -0400 |
commit | b47d6c09440799f41ca4aa91014a7829ada06114 (patch) | |
tree | 7f4ede124b120a5187d533bc319b46832a94a948 /install/static/user.js | |
parent | de88718f8790cf35d33e76982ab4bde6af34d4ca (diff) | |
download | freeipa-b47d6c09440799f41ca4aa91014a7829ada06114.tar.gz freeipa-b47d6c09440799f41ca4aa91014a7829ada06114.tar.xz freeipa-b47d6c09440799f41ca4aa91014a7829ada06114.zip |
links and facet icons
Enables the icons in the links and in the facets lists
Diffstat (limited to 'install/static/user.js')
-rw-r--r-- | install/static/user.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install/static/user.js b/install/static/user.js index 11880c84a..b797dde12 100644 --- a/install/static/user.js +++ b/install/static/user.js @@ -216,7 +216,7 @@ function user_render_quick_links(tr, attr, value, entry_attrs) { $("<a/>", { href: "jslink", - html: "[D]", + html: $("<img src='user_details.png' />"), click: function() { var state = {}; state['user-facet'] = 'details'; @@ -228,7 +228,7 @@ function user_render_quick_links(tr, attr, value, entry_attrs) { $("<a/>", { href: "jslink", - html: "[G]", + html: $("<img src='group_member.png' />"), click: function() { var state = {}; state['user-facet'] = 'associate'; @@ -241,7 +241,7 @@ function user_render_quick_links(tr, attr, value, entry_attrs) { $("<a/>", { href: "jslink", - html: "[N]", + html: $("<img src='netgroup_member.png' />"), click: function() { var state = {}; state['user-facet'] = 'associate'; @@ -254,7 +254,7 @@ function user_render_quick_links(tr, attr, value, entry_attrs) { $("<a/>", { href: "jslink", - html: "[R]", + html: $("<img src='rolegroup_member.png' />"), click: function() { var state = {}; state['user-facet'] = 'associate'; |