diff options
author | Richard Yu <yurichard3839@gmail.com> | 2019-11-18 20:46:48 +0800 |
---|---|---|
committer | Richard Yu <yurichard3839@gmail.com> | 2019-11-19 17:42:53 +0800 |
commit | 29fdc2b014b05a4d6ae2324b36ea9ce1c956360b (patch) | |
tree | 6854a847861405be4d19dca8bb1c7964725513b0 /applications/luci-app-nextdns/luasrc/view | |
parent | 1df1421221a2e22334668e6c5524fc359f21d32d (diff) |
luci-app-nextdns: port to client side
Signed-off-by: Richard Yu <yurichard3839@gmail.com>
Diffstat (limited to 'applications/luci-app-nextdns/luasrc/view')
-rw-r--r-- | applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm b/applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm deleted file mode 100644 index 0a98b2704f..0000000000 --- a/applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm +++ /dev/null @@ -1,46 +0,0 @@ -<%+header%> - -<style type="text/css"> - select[readonly], - textarea[readonly] - { - width: 100% !important; - height: 450px !important; - border: 1px solid #cccccc; - padding: 5px; - font-size: 12px; - font-family: monospace; - resize: none; - pointer-events: auto; - cursor: auto; - } -</style> - -<script type="text/javascript"> -//<![CDATA[ - function log_update() - { - XHR.poll(-1, '<%=luci.dispatcher.build_url("admin", "services", "nextdns", "logread")%>', null, - function(x) - { - if (!x) - { - return; - } - var view = document.getElementById("view_id"); - view.value = x.responseText; - view.scrollTop = view.scrollHeight; - }); - } - window.onload = log_update(); -//]]> -</script> - -<div class="cbi-map"> - <div class="cbi-section"> - <div class="cbi-section-descr"><%:The syslog output, pre-filtered for nextdns related messages only.%></div> - <textarea id="view_id" readonly="readonly" wrap="off" value=""></textarea> - </div> -</div> - -<%+footer%> |