From 4f61adf9ba18a42132e5a7c9ca719b73a24c8b01 Mon Sep 17 00:00:00 2001 From: Project Nayuki Date: Wed, 3 Oct 2018 02:54:29 +0000 Subject: [PATCH] Deleted section comments in TypeScript demo code. --- typescript/qrcodegen-demo.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/typescript/qrcodegen-demo.ts b/typescript/qrcodegen-demo.ts index c486d05..55c54b5 100644 --- a/typescript/qrcodegen-demo.ts +++ b/typescript/qrcodegen-demo.ts @@ -39,8 +39,6 @@ namespace app { } - /*---- Functions called from HTML code ----*/ - function redrawQrCode(): void { // Show/hide rows based on bitmap/vector image output const bitmapOutput: boolean = getInput("output-format-bitmap").checked; @@ -165,9 +163,6 @@ namespace app { } - - /*---- Private helper functions ----*/ - function getElem(id: string): HTMLElement { const result: HTMLElement|null = document.getElementById(id); if (result instanceof HTMLElement) @@ -184,8 +179,5 @@ namespace app { } - - /*---- Initialization ----*/ - initialize(); }