diff --git a/install/static/entity.js b/install/static/entity.js index 7aec565ac..3c48ca8f5 100644 --- a/install/static/entity.js +++ b/install/static/entity.js @@ -134,16 +134,15 @@ function ipa_entity_generate_views(obj_name, container) //TODO replace the plus image with the correct image for each facet ul.append($('
', { title: 'search', + text: 'Search', click: switch_view - })).append('
')
- .append('Search') ;
+ }).prepend('
'));
ul.append($('', {
text: 'Details',
title: 'details',
click: switch_view
- })).append('
')
- .append('Details') ;
+ }).prepend('
'));
var attribute_members = ipa_objs[obj_name].attribute_members;
for (attr in attribute_members) {
@@ -154,9 +153,9 @@ function ipa_entity_generate_views(obj_name, container)
ul.append($('', {
title: m,
+ text:label,
click: switch_view
- })).append('
')
- .append(label);
+ }).prepend('
'));
}
}