diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-02-08 15:41:24 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-02-09 19:46:49 -0500 |
commit | 8d597dcbb03ca70a342f470e0229c9934f75cb16 (patch) | |
tree | 7311deb7976b677efba19d864e893d8406aebd0f /install/ui/sudorule.js | |
parent | 25abf07360ea6824f3584edd847e080e6fdca981 (diff) | |
download | freeipa.git-8d597dcbb03ca70a342f470e0229c9934f75cb16.tar.gz freeipa.git-8d597dcbb03ca70a342f470e0229c9934f75cb16.tar.xz freeipa.git-8d597dcbb03ca70a342f470e0229c9934f75cb16.zip |
Moved add dialog into search facet.
Previously the add dialog is added into entity. The dialog is only
used by the search facet, so it's now moved into the search facet.
Diffstat (limited to 'install/ui/sudorule.js')
-rw-r--r-- | install/ui/sudorule.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/install/ui/sudorule.js b/install/ui/sudorule.js index bab457e8..5f062e73 100644 --- a/install/ui/sudorule.js +++ b/install/ui/sudorule.js @@ -30,16 +30,17 @@ IPA.entity_factories.sudorule = function () { that.init = function() { + var facet = IPA.sudorule_search_facet({ + 'name': 'search', + 'label': 'Search' + }); + var dialog = IPA.sudorule_add_dialog({ 'name': 'add', 'title': 'Add New Rule' }); - that.add_dialog(dialog); + facet.dialog(dialog); - var facet = IPA.sudorule_search_facet({ - 'name': 'search', - 'label': 'Search' - }); that.add_facet(facet); facet = IPA.sudorule_details_facet({ |