diff options
Diffstat (limited to 'install/ui/dns.js')
-rw-r--r-- | install/ui/dns.js | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/install/ui/dns.js b/install/ui/dns.js index 5cb49e55f..5af6e7a32 100644 --- a/install/ui/dns.js +++ b/install/ui/dns.js @@ -304,25 +304,6 @@ IPA.records_facet = function (spec){ return pkey != that.pkey || record != that.record; }; - that.create_action_panel = function(container) { - - that.facet_create_action_panel(container); - - var buttons = $('.action-controls', container); - - $('<input/>', { - 'type': 'button', - 'name': 'remove', - 'value': IPA.messages.buttons.remove - }).appendTo(buttons); - - $('<input/>', { - 'type': 'button', - 'name': 'add', - 'value': IPA.messages.buttons.add - }).appendTo(buttons); - }; - function create_content(container) { $('<h1/>',{ @@ -537,7 +518,7 @@ IPA.records_facet = function (spec){ //TODO this is cut and pasted from search, we need to unify function display(obj_name, data){ - var selector = '.entity-container[title=' + obj_name + ']'; + var selector = '.entity-container[name=' + obj_name + ']'; var thead = $(selector + ' thead'); var tbody = $(selector + ' tbody'); var tfoot = $(selector + ' tfoot'); |