Skip to content

Commit 6bc7843

Browse files
committed
some small fixes
1 parent b8be725 commit 6bc7843

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "javascript-deobfuscator",
3+
"description": "Deobfuscation tool for obfuscated JavaScript Codes using Obfuscator.io",
34
"version": "0.1.0",
45
"private": true,
56
"scripts": {

src/components/Main.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
/>
1313
</div>
1414
<div class="form-group mb-4 text-left">
15-
<label for="exampleFormControlTextarea1">Input</label>
15+
<label for="codeInputTextarea">Input</label>
1616
<textarea
1717
class="form-control"
18-
id="exampleFormControlTextarea1"
18+
id="codeInputTextarea"
1919
rows="5"
2020
v-model="mainCode"
2121
></textarea>
@@ -40,10 +40,10 @@
4040
</div>
4141

4242
<div class="form-group mb-4 text-left">
43-
<label for="exampleFormControlTextarea1">Result</label>
43+
<label for="codeResultTextarea">Result</label>
4444
<textarea
4545
class="form-control"
46-
id="exampleFormControlTextarea1"
46+
id="codeResultTextarea"
4747
rows="5"
4848
v-model="outputCode"
4949
></textarea>

0 commit comments

Comments
 (0)