From 2686ed62e1da0d7e229d3559e08354012ead3afe Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Fri, 12 Jun 2020 14:36:43 +0530 Subject: [PATCH] Adding sectionPlotUI --- index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/index.html b/index.html index ec100c6..a7a79ba 100644 --- a/index.html +++ b/index.html @@ -1087,6 +1087,26 @@ let myCustomLogin = function () { document.querySelectorAll('.admin-options').forEach((option) => { option.classList.remove('hide-completely'); }) + + let sectionPlotUI = ``; + + document.getElementById('sectionplotdiv').innerHTML = sectionPlotUI; + const section_plot_btn = document.getElementById('section_plot_btn'); + section_plot_btn.onclick = function () { + let section_plot_value = document.getElementById('section_plot_txt').value; + console.log(section_plot_value); + // plot func here + hidePopup('section_plot_modal') + } } }