1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00

Merge pull request #613 from vichan-devel/RealAngeleno-patch-11

prohibit file-selector.js from running on ios
This commit is contained in:
RealAngeleno 2023-08-03 22:33:53 -07:00 committed by GitHub
commit 29e02b705a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,11 @@
*/
function init_file_selector(max_images) {
// Temporarily block iOS
if (/iPad|iPhone|iPod/.test(navigator.userAgent)) {
return;
}
$(document).ready(function () {
// add options panel item
if (window.Options && Options.get_tab('general')) {