Skip to content

Commit c62a238

Browse files
committed
formatted
1 parent edd489f commit c62a238

File tree

24 files changed

+434
-399
lines changed

24 files changed

+434
-399
lines changed

.oxfmtrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"$schema": "./node_modules/oxfmt/configuration_schema.json",
3-
"ignorePatterns": [".next/**", "archive/**", "public/**"]
3+
"ignorePatterns": [".next/**", "archive/**"]
44
}

.oxlintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,5 @@
142142
"builtin": true
143143
},
144144
"globals": {},
145-
"ignorePatterns": []
145+
"ignorePatterns": ["archive/**", ".next/**", "node_modules/**"]
146146
}

public/app/WebDevelopperTool/BookMarkLet.html

Lines changed: 39 additions & 15 deletions
Large diffs are not rendered by default.

public/app/WebDevelopperTool/Source/index.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,34 @@
44
<div id="DevelopperToolBox">
55
<button id="HTML">&lt;&gt;</button>
66
<div id="HTMLEditor">
7-
<textarea id="HTMLSource" id="" cols="30" rows="10" placeHolder="//Please Write Here to Code"></textarea>
7+
<textarea
8+
id="HTMLSource"
9+
id=""
10+
cols="30"
11+
rows="10"
12+
placeholder="//Please Write Here to Code"
13+
></textarea>
814
<button id="UpdateHTML">Update</button>
915
<button id="RestoreHTML">Restore</button>
1016
</div>
1117
<button id="CSS">#</button>
1218
<div id="CSSEditor">
13-
<textarea id="CSSSource" cols="30" rows="10" placeHolder="//Please Write Here to Code"></textarea>
19+
<textarea
20+
id="CSSSource"
21+
cols="30"
22+
rows="10"
23+
placeholder="//Please Write Here to Code"
24+
></textarea>
1425
<button id="UpdateCSS">Update</button>
1526
<style id="CSSAdder"></style>
1627
</div>
1728
<button id="JS">JS</button>
1829
<div id="JSEditor">
19-
<textarea id="JSSource" rows="30" cols="10" placeHolder="//Please Write Here to Code">
20-
</textarea>
30+
<textarea id="JSSource" rows="30" cols="10" placeholder="//Please Write Here to Code">
31+
</textarea>
2132
<button id="JSRunnerButton">Run</button>
22-
<div id="JSRunnerConsole">
23-
</div>
33+
<div id="JSRunnerConsole"></div>
2434
<script id="JSRunner"></script>
2535
</div>
2636
</div>
27-
</div>
37+
</div>

public/app/WebDevelopperTool/Source/script.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ function openDevelopper() {
2121
openDevelopper();
2222
HTMLSource.value = getHTMLSource();
2323
document.querySelector("#VisibleSwitch").addEventListener("click", (e) => {
24-
if (
25-
document.getElementById("DevelopperToolBox").style.visibility === "visible"
26-
) {
24+
if (document.getElementById("DevelopperToolBox").style.visibility === "visible") {
2725
document.getElementById("DevelopperToolBox").style.visibility = "hidden";
2826
document.getElementById("MaximiseSwitch").style.visibility = "hidden";
2927
CSSEditor.style.visibility = "hidden";
@@ -97,4 +95,4 @@ document.querySelector("#UpdateCSS").addEventListener("click", (e) => {
9795
after.id = "CSSAdder";
9896
after.innerHTML = document.getElementById("CSSSource").value;
9997
document.getElementById("CSSEditor").appendChild(after);
100-
});
98+
});

public/app/WebDevelopperTool/Source/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@
178178
background-color: black;
179179
border: 2px solid yellow;
180180
overflow: scroll;
181-
font-size:5px;
182-
}
181+
font-size: 5px;
182+
}

0 commit comments

Comments
 (0)