From 09596c3c5a6a2a44675f170106bb38746229e02a Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Sat, 23 Sep 2017 09:48:38 +0200 Subject: Remove old frontend --- src/scripts/error404.entry.ts | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/scripts/error404.entry.ts (limited to 'src/scripts/error404.entry.ts') diff --git a/src/scripts/error404.entry.ts b/src/scripts/error404.entry.ts deleted file mode 100644 index 477a46c0..00000000 --- a/src/scripts/error404.entry.ts +++ /dev/null @@ -1,26 +0,0 @@ -/// -import * as $ from "jquery"; - - -$(document).ready(() => { - const text = - " oo oooo oo
" + - " oo oo oo oo
" + - " oo oo oo oo
" + - " oooooo oo oo oooooo
" + - " oo oo oo oo
" + - " oo oooo oo
"; - const charList = text.split(''); - - const binaryString = "01001111011100000110010101101110010001000100001100100001"; - - let binaryIndex = 0; - for (let i = 0; i < charList.length; i++) { - if (charList[i] === "o") { - charList[i] = binaryString[binaryIndex]; - binaryIndex++; - } - } - - $(".code-block").html(charList.join("")); -}); -- cgit v1.2.3