From 060278f9b808a4bd472f491a9d8038685512069a Mon Sep 17 00:00:00 2001 From: nztqa Date: Tue, 6 Jun 2017 14:57:40 +0900 Subject: Fix Drag Board To Scroll --- client/components/boards/boardBody.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js index 370db13b..b3880c61 100644 --- a/client/components/boards/boardBody.js +++ b/client/components/boards/boardBody.js @@ -75,7 +75,7 @@ BlazeComponent.extendComponent({ // the user will legitimately expect to be able to select some text with // his mouse. const noDragInside = ['a', 'input', 'textarea', 'p', '.js-list-header']; - if ($(evt.target).closest(noDragInside.join(',')).length === 0) { + if ($(evt.target).closest(noDragInside.join(',')).length === 0 && $('.lists').prop('clientHeight') > evt.offsetY) { this._isDragging = true; this._lastDragPositionX = evt.clientX; } -- cgit v1.2.3-1-g7c22 From c3505d13bdf796e3aed2607d733863781a6c46ed Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 6 Jun 2017 09:46:16 +0300 Subject: Fix IE 11 Drag Board To Scroll. Thanks to nztqa ! --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f792e85d..1741cbb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ This release adds the following new features: * [Change the way to delete a list (card-like)](https://github.com/wekan/wekan/pull/1050), fixes [missing undo button](https://github.com/wekan/wekan/issues/1023). -Thanks to GitHub users BaobabCoder for contributions. +and fixes the following bugs: + +* [Fix IE 11 drag board to scroll](https://github.com/wekan/wekan/pull/1052). + +Thanks to GitHub users BaobabCoder and nztqa for their contributions. # v0.23 2017-05-21 Wekan release -- cgit v1.2.3-1-g7c22