summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-01-25 17:29:46 -0500
committerAdam Young <ayoung@redhat.com>2011-01-25 17:30:46 -0500
commitc1799c836612337a13fd2301eb0911709dac4176 (patch)
tree70ca670519c45d76c8df8403a25b26de3175ca8b /install
parent5c88225ddac550f4cea12b1d5013984bb6c68c77 (diff)
downloadfreeipa-c1799c836612337a13fd2301eb0911709dac4176.tar.gz
freeipa-c1799c836612337a13fd2301eb0911709dac4176.tar.xz
freeipa-c1799c836612337a13fd2301eb0911709dac4176.zip
js lint fix
Diffstat (limited to 'install')
-rw-r--r--install/ui/entity.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js
index 70b583cc4..b0a6c2446 100644
--- a/install/ui/entity.js
+++ b/install/ui/entity.js
@@ -447,8 +447,8 @@ IPA.nested_tabs = function(entity_name){
return siblings;
};
-IPA.selected_icon = '&#x25B6; ';
-IPA.back_icon = '&#x25C0; ';
+IPA.selected_icon = '<span class="ipa-icon">&#x25B6;</span>';
+IPA.back_icon = '<span class="ipa-icon">&#x25C0;</span>';
IPA. facet_create_action_panel = function(container) {
@@ -569,7 +569,7 @@ IPA. facet_create_action_panel = function(container) {
innerlist.append(facet_link);
if ( other_facet.name === IPA.current_facet( entity)){
- var text = facet_link.text();
+ text = facet_link.text();
facet_link.html(IPA.selected_icon + text);
facet_link.addClass('entity-facet-selected');
innerlist.append($('<li class="entity-facet"><span class="action-controls" /></li>'));