Aleksander Machniak
2015-12-22 7d0099f28eb65a112834b377b0f022ab5cccb925
Fix so drag-n-drop of text (e.g. recipient addresses) on compose page actually works (#1490619)

Conflicts:

CHANGELOG
2 files modified
3 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -18,6 +18,7 @@
- Fix handling of message/rfc822 attachments on replies and forwards (#1490607)
- Fix PDF support detection in Firefox > 19 (#1490610)
- 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.1.3
-------------
program/js/app.js
@@ -7796,7 +7796,7 @@
  // html5 file-drop API
  this.document_drag_hover = function(e, over)
  {
    e.preventDefault();
    // don't e.preventDefault() here to not block text dragging on the page (#1490619)
    $(this.gui_objects.filedrop)[(over?'addClass':'removeClass')]('active');
  };