Browse Source

WebUI: Use workaround for IOS file picker

PR #18837.
Fixes #18683.
adaptive-webui-19844
DivineHawk 2 years ago committed by GitHub
parent
commit
0defb7d79d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/webui/www/private/upload.html

4
src/webui/www/private/upload.html

@ -166,6 +166,10 @@ @@ -166,6 +166,10 @@
if (submitted)
window.parent.closeWindows();
});
if (Browser.platform === 'ios') {
$('fileselect').accept = ".torrent";
}
</script>
<div id="upload_spinner" class="mochaSpinner"></div>
</body>

Loading…
Cancel
Save