diff options
author | Adam Young <ayoung@redhat.com> | 2011-06-28 13:39:10 -0400 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-06-28 22:40:42 +0000 |
commit | 66eeaceb8cc50902b408e5c97c6d04e59e57f97a (patch) | |
tree | d279fd33648bf1470f566afca418b876683748a2 /install/ui/webui.js | |
parent | 67b807d6402942061d9762f2c1ff31779b7d4744 (diff) | |
download | freeipa-66eeaceb8cc50902b408e5c97c6d04e59e57f97a.tar.gz freeipa-66eeaceb8cc50902b408e5c97c6d04e59e57f97a.tar.xz freeipa-66eeaceb8cc50902b408e5c97c6d04e59e57f97a.zip |
shorten url cache state in a javascript variable, and leave on information about the current entity in the URL hash params
https://fedorahosted.org/freeipa/ticket/674
decrement depth for hidden tabs.
Initialize state from url
useing delete for removing state
stricter attribute matching
not incrementing depth for all hidden tabs.
whitespace cleanup
Diffstat (limited to 'install/ui/webui.js')
-rw-r--r-- | install/ui/webui.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/install/ui/webui.js b/install/ui/webui.js index 72f9f729c..2c4451489 100644 --- a/install/ui/webui.js +++ b/install/ui/webui.js @@ -53,9 +53,12 @@ IPA.admin_navigation = function(spec) { {entity: 'sudocmd'}, {entity: 'sudocmdgroup'} ]}, - {entity: 'automountlocation', label: IPA.messages.tabs.automount}, - {entity: 'automountmap', hidden: true}, - {entity: 'automountkey', hidden: true}, + {name:'automount', + label: IPA.messages.tabs.automount, + children:[ + {entity: 'automountlocation', hidden:true}, + {entity: 'automountmap', hidden: true}, + {entity: 'automountkey', hidden: true}]}, {entity: 'pwpolicy'}, {entity: 'krbtpolicy'} ]}, |