display some conditional JS text

This commit is contained in:
blek 2023-09-30 01:09:24 +10:00
parent 8b4566a634
commit 69a695f9fb
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,11 @@
(
() => {
// display the js only text
document.getElementById('drag-n-drop-jsonly').style.display = 'initial';
const drag_rop = document.getElementsByClassName('file-drag-n-drop-inside')[0];
const dr_rop_t = document.getElementsByClassName('file-drag-n-drop-inside-text')[0];
}
)()

View File

@ -34,10 +34,16 @@
<span class="file-drag-n-drop-inside">
<span class="file-drag-n-drop-inside-text">
<object data="/tab-new-symbolic.svg" width="32" height="32"></object><br/>
Drag & drop your files here!
<span id='drag-n-drop-jsonly' style='display:none'>
Drag & drop your files here!
</span>
<noscript>
Click to upload your files!
</noscript>
</span>
</span>
</span>
<script src="/dragndrop-form.js"></script>
</label>
</p>
</form>