From eb68f297124664f4370089546edc1c3d42c6f8be Mon Sep 17 00:00:00 2001 From: Eric Swanson Date: Tue, 30 May 2017 16:09:56 -0700 Subject: [PATCH] Add downloaded file link --- vnc_auto.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vnc_auto.html b/vnc_auto.html index 28882bcb..b480ff21 100644 --- a/vnc_auto.html +++ b/vnc_auto.html @@ -83,6 +83,9 @@ +
+ +
@@ -287,6 +290,11 @@ return; // don't continue trying to connect } + var coyoteName = WebUtil.getConfigVar('name', ''); + var elm = document.getElementById('zn-download-link'); + elm.href = 'https://coyote.priceyak.com/download/' + coyoteName; + elm.style.display = ''; + rfb.connect(host, port, password, path); };