Skip to content

Commit ee9c6fc

Browse files
committed
fix: remove console.log
1 parent 5f3ab39 commit ee9c6fc

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.vscode/settings.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"liveServer.settings.port": 5503
2+
"liveServer.settings.https": {
3+
"enable": true, //set it true to enable the feature.
4+
"cert": "C:\\https\\server.crt", //full path of the certificate
5+
"key": "C:\\https\\server.key", //full path of the private key
6+
"passphrase": "12345"
7+
},
8+
"liveServer.settings.port": 5501
39
}

js/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export const isMobile = () =>
218218

219219
export function changeMobileLayout() {
220220
const resultArea = resultContainer.querySelector(".result-area");
221-
console.log(isMobile(), checkOrientation() === "landscape");
221+
222222
Object.assign(
223223
resultArea.style,
224224
isMobile() && checkOrientation() === "landscape"

0 commit comments

Comments
 (0)