summaryrefslogtreecommitdiffstats
path: root/install/ui/automount.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-11-22 17:33:09 +0100
committerEndi S. Dewata <edewata@redhat.com>2011-12-05 16:00:50 +0000
commite0215421208d853e853f9c7b66add1e145982fbc (patch)
treef2d9d495dbe4f839f5b65a3348c0e11f8ac25d9a /install/ui/automount.js
parent6cdf09812dd13531acb29f1413de87ce7cd5218f (diff)
downloadfreeipa-e0215421208d853e853f9c7b66add1e145982fbc.tar.gz
freeipa-e0215421208d853e853f9c7b66add1e145982fbc.tar.xz
freeipa-e0215421208d853e853f9c7b66add1e145982fbc.zip
Removing sections as special type of object
Sections are changed into pure widget objects. Introduced IPA.composite_widget, basic widget for widget nesting (it's using IPA.widget_container). It's base class for section widgets. TODO: change old custom sections into custom fields and widgets. Note: usage of section in HBAC and SUDO is kept - whole logic will be removed in #1515 patch. https://fedorahosted.org/freeipa/ticket/2040
Diffstat (limited to 'install/ui/automount.js')
-rw-r--r--install/ui/automount.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/automount.js b/install/ui/automount.js
index 9c0152ae9..5a92a52ea 100644
--- a/install/ui/automount.js
+++ b/install/ui/automount.js
@@ -241,9 +241,9 @@ IPA.automountmap_adder_dialog = function(spec) {
that.create = function() {
that.entity_adder_dialog_create();
- var method_field = that.get_field('method');
+ var method_field = that.fields.get_field('method');
var indirect_section = that.get_section('indirect');
- var key_field = that.get_field('key');
+ var key_field = that.fields.get_field('key');
var direct_input = $('input[value="add"]', method_field.container);
direct_input.change(function() {
@@ -267,7 +267,7 @@ IPA.automountmap_adder_dialog = function(spec) {
that.reset = function() {
that.dialog_reset();
- var method_field = that.get_field('method');
+ var method_field = that.fields.get_field('method');
var direct_input = $('input[value="add"]', method_field.container);
direct_input.click();