From 59a0c17c54b2136946a43b012380f926d9d9e7f3 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Fri, 12 Nov 2010 20:51:15 -0500 Subject: super to superior --- install/static/associate.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install/static/associate.js') diff --git a/install/static/associate.js b/install/static/associate.js index ef3a72c1..eda85dc8 100644 --- a/install/static/associate.js +++ b/install/static/associate.js @@ -243,8 +243,8 @@ function ipa_association_widget(spec) { that.other_entity = spec.other_entity; - that.super_create = that.super('create'); - that.super_setup = that.super('setup'); + that.superior_create = that.superior('create'); + that.superior_setup = that.superior('setup'); that.create = function(container) { @@ -256,7 +256,7 @@ function ipa_association_widget(spec) { 'primary_key': true }); - that.super_create(container); + that.superior_create(container); var div = $('#'+that.id, container); var buttons = $('span[name=buttons]', div); @@ -276,7 +276,7 @@ function ipa_association_widget(spec) { that.setup = function(container) { - that.super_setup(container); + that.superior_setup(container); var entity = IPA.get_entity(that.entity_name); var association = entity.get_association(that.other_entity); -- cgit