diff options
Diffstat (limited to 'install/static/sudocmd.js')
-rwxr-xr-x | install/static/sudocmd.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/static/sudocmd.js b/install/static/sudocmd.js index 307f0990..ef3c24e5 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); }; |