I am using angularjs-dragula and I cannot automatically scroll overflow container which is hidden from the screen.
This is my problem:
I have five containers in my dragul, and the fifth container is hidden from the screen. Now I want to drag an item from the first container and put it in the 5th container. But I can not do this, since the screen does not automatically scroll to the 5th container.
Does angular-dragula support vertical scrolling? or is there a property that i am missing?
Plunkr example: https://plnkr.co/edit/iD38MugmHIx298p7OlrI?p=preview
var app = angular.module('angular-dragula-demo', [angularDragula(angular)]);
app.controller('MainCtrl', function($scope, dragulaService) {
dragulaService.options($scope, 'fifth-bag', {
copy: true
});
});
source
share