mirror of
https://github.com/misode/misode.github.io.git
synced 2026-05-02 13:42:55 +00:00
Fix typo in function name
This commit is contained in:
+1
-1
@@ -65,7 +65,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<textarea id="copyTextarea" rows="1" class="form-control mb-3 d-none"></textarea>
|
<textarea id="copyTextarea" rows="1" class="form-control mb-3 d-none"></textarea>
|
||||||
<textarea id="source" class="form-control code" onchange="updateSouce()" rows="19" spellcheck="false"></textarea>
|
<textarea id="source" class="form-control code" onchange="updateSource()" rows="19" spellcheck="false"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ addEntry($('#structure .pool').get());
|
|||||||
const params = new URLSearchParams(window.location.search);
|
const params = new URLSearchParams(window.location.search);
|
||||||
if (params.has('q')) {
|
if (params.has('q')) {
|
||||||
$('#source').val(atob(params.get('q')));
|
$('#source').val(atob(params.get('q')));
|
||||||
updateSouce();
|
updateSource();
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateTableType() {
|
function updateTableType() {
|
||||||
@@ -51,7 +51,7 @@ function linkSource() {
|
|||||||
}, 2000);
|
}, 2000);
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateSouce() {
|
function updateSource() {
|
||||||
$('#source').removeClass('invalid');
|
$('#source').removeClass('invalid');
|
||||||
try {
|
try {
|
||||||
table = JSON.parse($('#source').val());
|
table = JSON.parse($('#source').val());
|
||||||
|
|||||||
Reference in New Issue
Block a user