mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
Merge pull request #1409 from Influence365/fix-persistant-drop-image-text
Fix "Drop image here, or click to browse" persistent Visual
This commit is contained in:
commit
8bb8f8262e
@ -58,6 +58,7 @@ define(['dialogHelper', 'connectionManager', 'dom', 'loading', 'scrollHelper', '
|
|||||||
var html = ['<img style="max-width:100%;max-height:100%;" src="', e.target.result, '" title="', escape(theFile.name), '"/>'].join('');
|
var html = ['<img style="max-width:100%;max-height:100%;" src="', e.target.result, '" title="', escape(theFile.name), '"/>'].join('');
|
||||||
|
|
||||||
page.querySelector('#imageOutput').innerHTML = html;
|
page.querySelector('#imageOutput').innerHTML = html;
|
||||||
|
page.querySelector('#dropImageText').classList.add('hide');
|
||||||
page.querySelector('#fldUpload').classList.remove('hide');
|
page.querySelector('#fldUpload').classList.remove('hide');
|
||||||
};
|
};
|
||||||
})(file);
|
})(file);
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="imageEditor-dropZone fieldDescription">
|
<div class="imageEditor-dropZone fieldDescription">
|
||||||
<div>${LabelDropImageHere}</div>
|
<div class="dropImageText">${LabelDropImageHere}</div>
|
||||||
<output id="imageOutput" class="flex align-items-center justify-content-center" style="position: absolute;top:0;left:0;right:0;bottom:0;width:100%;"></output>
|
<output id="imageOutput" class="flex align-items-center justify-content-center" style="position: absolute;top:0;left:0;right:0;bottom:0;width:100%;"></output>
|
||||||
<input type="file" accept="image/*" id="uploadImage" name="uploadImage" style="position: absolute;top:0;left:0;right:0;bottom:0;width:100%;opacity:0;" />
|
<input type="file" accept="image/*" id="uploadImage" name="uploadImage" style="position: absolute;top:0;left:0;right:0;bottom:0;width:100%;opacity:0;" />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user