diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-04-28 17:38:21 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-05-05 12:14:34 -0500 |
commit | 5eb9f088f2c5c902a55aefdf9dd8b2a95e060837 (patch) | |
tree | 57e5eb988fb2056d02df4ab07c857622dd03f0b8 /install/ui/associate.js | |
parent | 238da3dffd99f3ea91318eb2dd0fe77860aff345 (diff) | |
download | freeipa.git-5eb9f088f2c5c902a55aefdf9dd8b2a95e060837.tar.gz freeipa.git-5eb9f088f2c5c902a55aefdf9dd8b2a95e060837.tar.xz freeipa.git-5eb9f088f2c5c902a55aefdf9dd8b2a95e060837.zip |
Use entity names for tab state.
Previously the tab state is represented using numeric index such
as navigation=0&identity=1 which is not very user friendly. Now the
code has been modified to use entity names such as
navigation=identity&identity=group.
Diffstat (limited to 'install/ui/associate.js')
-rw-r--r-- | install/ui/associate.js | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/install/ui/associate.js b/install/ui/associate.js index 77738bba..632fcc52 100644 --- a/install/ui/associate.js +++ b/install/ui/associate.js @@ -288,10 +288,7 @@ IPA.association_pkey_setup = function (container, record) { 'html': value, 'click': function (value) { return function() { - var state = IPA.tab_state(other_entity); - state[other_entity + '-facet'] = 'default'; - state[other_entity + '-pkey'] = value; - $.bbq.pushState(state); + IPA.nav.show_page(other_entity, 'default', value); return false; }; }(value) @@ -776,10 +773,7 @@ IPA.association_facet = function (spec) { 'html': value, 'click': function (value) { return function() { - var state = IPA.tab_state(that.other_entity); - state[that.other_entity + '-facet'] = 'default'; - state[that.other_entity + '-pkey'] = value; - $.bbq.pushState(state); + IPA.nav.show_page(that.other_entity, 'default', value); return false; }; }(value) |