diff options
Diffstat (limited to 'install/ui/details.js')
-rw-r--r-- | install/ui/details.js | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/install/ui/details.js b/install/ui/details.js index 0a22c177..590d775a 100644 --- a/install/ui/details.js +++ b/install/ui/details.js @@ -323,6 +323,23 @@ IPA.details_facet = function(spec) { } }; + that.create_action_panel = function(container) { + + that.facet_create_action_panel(container); + + var buttons = $('.action-controls', container); + + $('<input/>', { + 'type': 'text', + 'name': 'reset' + }).appendTo(buttons); + + $('<input/>', { + 'type': 'text', + 'name': 'update' + }).appendTo(buttons); + }; + function create_content(container) { var label = IPA.metadata.objects[that.entity_name].label; @@ -356,22 +373,6 @@ IPA.details_facet = function(spec) { details.append('<br/>'); - var action_panel = that.get_action_panel(); - - var ul = $('ul', action_panel); - var buttons = $('.action-controls',action_panel); - - $('<input/>', { - 'type': 'text', - 'name': 'reset' - }).appendTo(buttons); - - $('<input/>', { - 'type': 'text', - 'name': 'update' - }).appendTo(buttons); - - for (var i = 0; i < that.sections.length; ++i) { var section = that.sections[i]; |