diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-01-31 22:24:40 -0600 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-01-31 23:29:07 -0500 |
commit | 7c23d5aff955739f2271d510d4f494d67a77d8a3 (patch) | |
tree | 5f9f8f84b37503385054479471d91a0a34a2e4eb | |
parent | f85771b2a7117c8870d800ee863ccf10fe0b13c3 (diff) | |
download | freeipa-7c23d5aff955739f2271d510d4f494d67a77d8a3.tar.gz freeipa-7c23d5aff955739f2271d510d4f494d67a77d8a3.tar.xz freeipa-7c23d5aff955739f2271d510d4f494d67a77d8a3.zip |
Fixed missing object reference.
-rw-r--r-- | install/ui/associate.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/associate.js b/install/ui/associate.js index 15fe8fed..2d416f0f 100644 --- a/install/ui/associate.js +++ b/install/ui/associate.js @@ -455,7 +455,7 @@ IPA.association_table_widget = function (spec) { 'pkey': pkey, 'other_entity': that.other_entity, 'attribute_member': that.attribute_member, - method:that.add_method + method: that.add_method }); }; @@ -520,7 +520,7 @@ IPA.association_table_widget = function (spec) { 'pkey': pkey, 'other_entity': that.other_entity, 'values': selected_values, - method:remove_method + method: that.remove_method }); dialog.remove = function() { |