diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-06-13 23:18:57 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-06-16 11:51:25 -0400 |
commit | d6343f4bb079eec744553078c75205abec7e692d (patch) | |
tree | ef49a79fbfff427da1e086da15f59cd75f6f9b83 /install/ui/dialog.js | |
parent | 724dd997447c84c6eb3893fe40fb2c5a78d4efd7 (diff) | |
download | freeipa-d6343f4bb079eec744553078c75205abec7e692d.tar.gz freeipa-d6343f4bb079eec744553078c75205abec7e692d.tar.xz freeipa-d6343f4bb079eec744553078c75205abec7e692d.zip |
Fixed self-service links.
In self-service mode the user's association facets have been modified
such that the entries are not linked since the only available entity
is the user entity.
A 'link' parameter has been added to IPA.association_facet and
IPA.column to control whether to link the entries. The link_handler()
method can be used to define how to handle the link.
Ticket #1072
Diffstat (limited to 'install/ui/dialog.js')
-rw-r--r-- | install/ui/dialog.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/ui/dialog.js b/install/ui/dialog.js index 3bcb4556d..ebd6c9968 100644 --- a/install/ui/dialog.js +++ b/install/ui/dialog.js @@ -526,6 +526,7 @@ IPA.adder_dialog = function (spec) { 'label': button.val(), 'click': function() { that.remove(); + return false; } }); button.replaceWith(that.remove_button); @@ -535,6 +536,7 @@ IPA.adder_dialog = function (spec) { 'label': button.val(), 'click': function() { that.add(); + return false; } }); button.replaceWith(that.add_button); |