Skip to content
Snippets Groups Projects
Unverified Commit 2bc86756 authored by Xeltica's avatar Xeltica Committed by GitHub
Browse files

iOS Safari 上で アイコンおよびバナーのアップロードができない不具合を修正 (#6427)

* fix #6076

* 参考文献を明記
parent ffc7f42e
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,15 @@ export function selectFile(component: any, src: any, label: string | null, multi
}).finally(() => {
dialog.close();
});
// 一応廃棄
(window as any).__misskey_input_ref__ = null;
};
// https://qiita.com/fukasawah/items/b9dc732d95d99551013d
// iOS Safari で正常に動かす為のおまじない
(window as any).__misskey_input_ref__ = input;
input.click();
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment