summaryrefslogtreecommitdiffstats
path: root/client/components/boards
diff options
context:
space:
mode:
authorSchulz <lvivwebdevelopment@gmail.com>2018-10-03 15:58:17 +0300
committerSchulz <lvivwebdevelopment@gmail.com>2018-10-03 15:58:17 +0300
commitf8b89129a308718b9676d3fa9743ce4655507f42 (patch)
treec77e209f89a96a9010f0a7b4e622804dc5ae5767 /client/components/boards
parent1d803d4b5185f6941d3589a48e355f04e8538f55 (diff)
downloadwekan-f8b89129a308718b9676d3fa9743ce4655507f42.tar.gz
wekan-f8b89129a308718b9676d3fa9743ce4655507f42.tar.bz2
wekan-f8b89129a308718b9676d3fa9743ce4655507f42.zip
Card url fixed
Diffstat (limited to 'client/components/boards')
-rw-r--r--client/components/boards/boardBody.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js
index b68c9b12..ccbd0f23 100644
--- a/client/components/boards/boardBody.js
+++ b/client/components/boards/boardBody.js
@@ -147,6 +147,13 @@ BlazeComponent.extendComponent({
});
},
+ scrollTop(position = 0) {
+ const swimlanes = this.$('.js-swimlanes');
+ swimlanes && swimlanes.animate({
+ scrollTop: position,
+ });
+ },
+
}).register('boardBody');
BlazeComponent.extendComponent({