summaryrefslogtreecommitdiffstats
path: root/install/static/entity.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-09-17 20:30:41 -0400
committerAdam Young <ayoung@redhat.com>2010-09-20 12:11:33 -0400
commitb47d6c09440799f41ca4aa91014a7829ada06114 (patch)
tree7f4ede124b120a5187d533bc319b46832a94a948 /install/static/entity.js
parentde88718f8790cf35d33e76982ab4bde6af34d4ca (diff)
downloadfreeipa-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/entity.js')
-rw-r--r--install/static/entity.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/static/entity.js b/install/static/entity.js
index 3c48ca8f..7adc3921 100644
--- a/install/static/entity.js
+++ b/install/static/entity.js
@@ -136,13 +136,13 @@ function ipa_entity_generate_views(obj_name, container)
title: 'search',
text: 'Search',
click: switch_view
- }).prepend('<img src="plus-enabled.png"/>'));
+ }).prepend('<img src="search.png"/>'));
ul.append($('<li></li>', {
text: 'Details',
title: 'details',
click: switch_view
- }).prepend('<img src="plus-enabled.png"/>'));
+ }).prepend('<img src="' + obj_name +'_details.png"/>'));
var attribute_members = ipa_objs[obj_name].attribute_members;
for (attr in attribute_members) {
@@ -155,7 +155,7 @@ function ipa_entity_generate_views(obj_name, container)
title: m,
text:label,
click: switch_view
- }).prepend('<img src="plus-enabled.png"/>'));
+ }).prepend('<img src="' + ipa_objs[m].name + '_member.png"/>'));
}
}