disable kanban dragging on touch devices

This commit is contained in:
yuri
2018-09-11 15:57:04 +03:00
parent d44b172602
commit a44dcdc9ff
+4
View File
@@ -244,6 +244,10 @@ Espo.define('views/record/kanban', ['views/record/list'], function (Dep) {
var $item = this.$listKanban.find('.item');
var $list = this.$listKanban.find('.group-column-list');
$list.find('> .item').on('touchstart', function (e) {
e.originalEvent.stopPropagation();
}.bind(this));
$list.sortable({
connectWith: '.group-column-list',
cancel: '.dropdown-menu *',