summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-06-25 13:23:52 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-06-25 13:23:52 +0000
commit5f99260cc241d65ee1a936592a83aed1e2d8a162 (patch)
tree90c87ce1eeda65496f41828d7e1b32f6958ea16e /app
parent8ee6495978a96112b42df12d20e856ca060634aa (diff)
downloadredmine-5f99260cc241d65ee1a936592a83aed1e2d8a162.tar.gz
redmine-5f99260cc241d65ee1a936592a83aed1e2d8a162.zip
fix file upload broken on Chrome 36 (#17151)
Contributed by Felix Schäfer. git-svn-id: http://svn.redmine.org/redmine/trunk@13183 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/attachments/_form.html.erb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/attachments/_form.html.erb b/app/views/attachments/_form.html.erb
index 65ad8804a..26ff5c96a 100644
--- a/app/views/attachments/_form.html.erb
+++ b/app/views/attachments/_form.html.erb
@@ -15,7 +15,6 @@
:id => nil,
:class => 'file_selector',
:multiple => true,
- :onchange => 'addInputFiles(this);',
:data => {
:max_file_size => Setting.attachment_max_size.to_i.kilobytes,
:max_file_size_message => l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)),
@@ -25,6 +24,9 @@
} %>
(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
</span>
+<%= javascript_tag do %>
+ $('input.file_selector').on('change', function(){addInputFiles(this);});
+<% end %>
<% content_for :header_tags do %>
<%= javascript_include_tag 'attachments' %>