Deleted section comments in TypeScript demo code.
This commit is contained in:
parent
6d79c97c42
commit
4f61adf9ba
|
@ -39,8 +39,6 @@ namespace app {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*---- Functions called from HTML code ----*/
|
|
||||||
|
|
||||||
function redrawQrCode(): void {
|
function redrawQrCode(): void {
|
||||||
// Show/hide rows based on bitmap/vector image output
|
// Show/hide rows based on bitmap/vector image output
|
||||||
const bitmapOutput: boolean = getInput("output-format-bitmap").checked;
|
const bitmapOutput: boolean = getInput("output-format-bitmap").checked;
|
||||||
|
@ -165,9 +163,6 @@ namespace app {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*---- Private helper functions ----*/
|
|
||||||
|
|
||||||
function getElem(id: string): HTMLElement {
|
function getElem(id: string): HTMLElement {
|
||||||
const result: HTMLElement|null = document.getElementById(id);
|
const result: HTMLElement|null = document.getElementById(id);
|
||||||
if (result instanceof HTMLElement)
|
if (result instanceof HTMLElement)
|
||||||
|
@ -184,8 +179,5 @@ namespace app {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*---- Initialization ----*/
|
|
||||||
|
|
||||||
initialize();
|
initialize();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue