diff options
Diffstat (limited to 'applications/luci-app-ttyd/htdocs')
-rw-r--r-- | applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/config.js | 3 | ||||
-rw-r--r-- | applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/term.js | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/config.js b/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/config.js index e92880d53c..9934ecebd7 100644 --- a/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/config.js +++ b/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/config.js @@ -1,8 +1,9 @@ 'use strict'; +'require view'; 'require form'; 'require tools.widgets as widgets'; -return L.view.extend({ +return view.extend({ render: function() { var m, s, o; diff --git a/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/term.js b/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/term.js index 4725f7a5bc..965f827720 100644 --- a/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/term.js +++ b/applications/luci-app-ttyd/htdocs/luci-static/resources/view/ttyd/term.js @@ -1,17 +1,19 @@ 'use strict'; +'require view'; 'require uci'; -return L.view.extend({ +return view.extend({ load: function() { return uci.load('ttyd'); }, render: function() { - var port = uci.get_first('ttyd', 'ttyd', 'port') || '7681'; + var port = uci.get_first('ttyd', 'ttyd', 'port') || '7681', + ssl = uci.get_first('ttyd', 'ttyd', 'ssl') || '0'; if (port === '0') return E('div', { class: 'alert-message warning' }, _('Random ttyd port (port=0) is not supported.<br>Change to a fixed port and try again.')); return E('iframe', { - src: window.location.protocol + '//' + window.location.hostname + ':' + port, + src: (ssl === '1' ? 'https' : 'http') + '://' + window.location.hostname + ':' + port, style: 'width: 100%; min-height: 500px; border: none; border-radius: 3px; resize: vertical;' }); }, |