Fix so drag-n-drop of text (e.g. recipient addresses) on compose page actually works (#1490619)

Conflicts:

	program/js/app.js
release-1.0
Aleksander Machniak 9 years ago
parent 21b523c29b
commit 82fcd4e757

@ -7,6 +7,7 @@ CHANGELOG Roundcube Webmail
- Fix handling of message/rfc822 attachments on replies and forwards (#1490607) - Fix handling of message/rfc822 attachments on replies and forwards (#1490607)
- Fix PDF support detection in Firefox > 19 (#1490610) - Fix PDF support detection in Firefox > 19 (#1490610)
- Fix path traversal vulnerability in setting a skin (#1490620) - Fix path traversal vulnerability in setting a skin (#1490620)
- Fix so drag-n-drop of text (e.g. recipient addresses) on compose page actually works (#1490619)
RELEASE 1.0.7 RELEASE 1.0.7
------------- -------------

@ -7248,8 +7248,8 @@ function rcube_webmail()
// html5 file-drop API // html5 file-drop API
this.document_drag_hover = function(e, over) this.document_drag_hover = function(e, over)
{ {
e.preventDefault(); // don't e.preventDefault() here to not block text dragging on the page (#1490619)
$(ref.gui_objects.filedrop)[(over?'addClass':'removeClass')]('active'); $(this.gui_objects.filedrop)[(over?'addClass':'removeClass')]('active');
}; };
this.file_drag_hover = function(e, over) this.file_drag_hover = function(e, over)

Loading…
Cancel
Save