Vote #81868
完了copyImageFromClipboard function targets the first file input of the page and may conflict with other plugins
0%
説明
Hello,
The function copyImageFromClipboard) targets the first file input of the page and may conflict with other plugins.
On our redmine instance we use the redmine_comments plugin (https://github.com/jbbarth/redmine_comments) that adds the ability to write private note and create a new form.
We experienced a problem as shown in the image1 and image2 ,and when we click on comment as shown in image3
We managed to fix this issue, by replace the line
var inputEl = $('input:file.filedrop').first();
by
var inputEl = $(this).closest("form").find('input:file.filedrop');
Thank you for your help
journals
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
I'm trying to reproduce the issue, but the plugin doesn't work on current trunk. Can you help me reproduce?
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Hello
Did you install the plugin (redmine_tiny_features)?
Because the bug is fixed by overriding the method (copyImageFromClipboard).
--------------------------------------------------------------------------------
Yazan Al aeddin wrote:
> Hello
> Did you install the plugin (redmine_tiny_features)?
> Because the bug is fixed by overriding the method (copyImageFromClipboard).
I only tried to install https://github.com/jbbarth/redmine_comments and I saw a new role permission, but nothing else in the UI.
--------------------------------------------------------------------------------
Ok I'll see
--------------------------------------------------------------------------------
Did you make (rake redmine:plugins:migrate)?
--------------------------------------------------------------------------------
Hello
We propose this patch
Thank you for your help.
--------------------------------------------------------------------------------
Patch committed, thanks!
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
related_issues
copied_to,Closed,36887,copyImageFromClipboard function failed to generate a unique file name