fix file upload does not work with Safari (#13932)

Contributed by Felix Schäfer.

git-svn-id: http://svn.redmine.org/redmine/trunk@13184 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2014-06-25 13:34:51 +00:00
parent 5f99260cc2
commit 1536bde0e4

View File

@@ -117,7 +117,7 @@ function uploadBlob(blob, uploadUrl, attachmentId, options) {
function addInputFiles(inputEl) {
var clearedFileInput = $(inputEl).clone().val('');
if (inputEl.files) {
if ('FileReader' in window && inputEl.files) {
// upload files using ajax
uploadAndAttachFiles(inputEl.files, inputEl);
$(inputEl).remove();