From 51148c097a35d3542994683bd450d8e0c9ad17b5 Mon Sep 17 00:00:00 2001 From: Innovation Inc Date: Tue, 23 Apr 2019 10:49:48 -0500 Subject: [PATCH] Delete index.js --- css/index.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 css/index.js diff --git a/css/index.js b/css/index.js deleted file mode 100644 index 82214b8..0000000 --- a/css/index.js +++ /dev/null @@ -1,22 +0,0 @@ -$(function() { - - // Set the command-line prompt to include the user's IP Address - //$('.prompt').html('[' + codehelper_ip["IP"] + '@HTML5] # '); - $('.prompt').html('[user@HTML5] # '); - - // Initialize a new terminal object - var term = new Terminal('#input-line .cmdline', '#container output'); - term.init(); - - // Update the clock every second - setInterval(function() { - function r(cls, deg) { - $('.' + cls).attr('transform', 'rotate('+ deg +' 50 50)') - } - var d = new Date() - r("sec", 6*d.getSeconds()) - r("min", 6*d.getMinutes()) - r("hour", 30*(d.getHours()%12) + d.getMinutes()/2) - }, 1000); - -}); \ No newline at end of file