Skip to content

Commit 2e1d244

Browse files
author
liw003
committed
bdx
1 parent acb0c64 commit 2e1d244

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/index.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@ const __BUILD_TIME__ = ''
254254
let checkbox = document.getElementById('newline') as HTMLInputElement;
255255
let newLine = checkbox.checked ? " <br><br> ": "\n";
256256

257+
let log = console.log;
258+
log('newLine ' + newLine + "--")
259+
257260

258261

259262
let msg = `
@@ -290,7 +293,8 @@ const __BUILD_TIME__ = ''
290293

291294
let checkbox = document.getElementById('newline') as HTMLInputElement;
292295
let newLine = checkbox.checked ? " <br><br> ": "\n";
293-
296+
let log = console.log;
297+
log('newLine ' + newLine + "--")
294298

295299

296300
let msg = `
@@ -393,10 +397,7 @@ const __BUILD_TIME__ = ''
393397
};
394398

395399
let btime = document.getElementById("build") as HTMLElement;
396-
397-
398-
399-
btime.innerText = `编译信息:\n${__BUILD_MOD__}\n${__BUILD_TIME__} `;
400+
btime.innerText = `\n${__BUILD_MOD__}\n${__BUILD_TIME__} `;
400401

401402
(async function initDefaultValues() {
402403
console.log(location.hash);

0 commit comments

Comments
 (0)