From 211bcf168a1a102900e794e6a2da4a198c12cc9b Mon Sep 17 00:00:00 2001 From: Ivan Filippov Date: Fri, 29 Apr 2016 11:19:29 -0600 Subject: [PATCH] Fixed DNSSEC popup not updating after clicking on an enabled zone. --- app/static/custom/js/custom.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/static/custom/js/custom.js b/app/static/custom/js/custom.js index a7bef21..71f77b7 100644 --- a/app/static/custom/js/custom.js +++ b/app/static/custom/js/custom.js @@ -121,7 +121,6 @@ function getdnssec(url){ if (data['status'] == 'error'){ modal.find('.modal-body p').text(data['msg']); - } else { dnssec_msg = ''; @@ -144,8 +143,7 @@ function getdnssec(url){ dnssec_msg += ''; } } - modal.find('.modal-body p').replaceWith(dnssec_msg); - + modal.find('.modal-body p').html(dnssec_msg); } modal.modal('show'); });