summaryrefslogtreecommitdiffstats
path: root/install/static/sudocmd.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-01-12 14:47:29 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2011-01-12 21:47:05 -0500
commitb79bf4ab1757eb08f7209f158f1f3a386ace8c96 (patch)
tree53ae8597469de4481d35a36e29172fa2cd4cf17d /install/static/sudocmd.js
parent4da9228fb2ac34adab8eb1884ae414236adb84fa (diff)
downloadfreeipa-b79bf4ab1757eb08f7209f158f1f3a386ace8c96.tar.gz
freeipa-b79bf4ab1757eb08f7209f158f1f3a386ace8c96.tar.xz
freeipa-b79bf4ab1757eb08f7209f158f1f3a386ace8c96.zip
javascript lint cleanup
Diffstat (limited to 'install/static/sudocmd.js')
-rwxr-xr-xinstall/static/sudocmd.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/static/sudocmd.js b/install/static/sudocmd.js
index 307f09900..ef3c24e5e 100755
--- a/install/static/sudocmd.js
+++ b/install/static/sudocmd.js
@@ -149,7 +149,6 @@ function ipa_sudocmd_member_sudocmdgroup_table_widget(spec) {
$('<a/>', {
'href': '#'+value,
- 'html': value,
'click': function (value) {
return function() {
var state = IPA.tab_state(that.other_entity);
@@ -157,8 +156,9 @@ function ipa_sudocmd_member_sudocmdgroup_table_widget(spec) {
state[that.other_entity + '-pkey'] = value;
$.bbq.pushState(state);
return false;
- }
- }(value)
+ };
+ }(value),
+ 'html': value
}).appendTo(container);
};