display some conditional JS text
This commit is contained in:
parent
8b4566a634
commit
69a695f9fb
|
@ -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];
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
)()
|
|
@ -34,10 +34,16 @@
|
||||||
<span class="file-drag-n-drop-inside">
|
<span class="file-drag-n-drop-inside">
|
||||||
<span class="file-drag-n-drop-inside-text">
|
<span class="file-drag-n-drop-inside-text">
|
||||||
<object data="/tab-new-symbolic.svg" width="32" height="32"></object><br/>
|
<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>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
<script src="/dragndrop-form.js"></script>
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in New Issue