From 9edf1fa9431016cdd4e08c8afaff52cf0909f22b Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Thu, 23 Apr 2020 01:42:13 -0700 Subject: stage 2 --- connection/private/index.html | 58 ++++++++++++++ connection/private/main.css | 106 +++++++++++++++++++++++++ connection/private/other.js | 177 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 341 insertions(+) create mode 100644 connection/private/index.html create mode 100644 connection/private/main.css create mode 100644 connection/private/other.js (limited to 'connection/private') diff --git a/connection/private/index.html b/connection/private/index.html new file mode 100644 index 0000000..a858dee --- /dev/null +++ b/connection/private/index.html @@ -0,0 +1,58 @@ + +
+ + +' + html + '
'); + } + + // Cross-browser impl to get document's height. + function getDocHeight_() { + var d = document; + return Math.max( + Math.max(d.body.scrollHeight, d.documentElement.scrollHeight), + Math.max(d.body.offsetHeight, d.documentElement.offsetHeight), + Math.max(d.body.clientHeight, d.documentElement.clientHeight) + ); + } + + // + return { + init: function() { + output(new Date() /*+ 'Enter "help" for more information.
'*/ ); + }, + output: output + } +}; \ No newline at end of file -- cgit v1.2.3