Drag-and-drop improvements for projects and issue pins (#29875)
1. Add "grabbing" cursor while dragging items:  2. Make project board only drag via their header, not via their whole body.  3. Fix some cursor problems in projects 4. Move shared options into `createSortable`. (cherry picked from commit 7fda109aba6cd077343edef086b2f2ff60124f78)
This commit is contained in:
parent
c5ac296cd9
commit
47c61f909c
6 changed files with 27 additions and 10 deletions
|
@ -58,8 +58,7 @@ async function initRepoProjectSortable() {
|
|||
createSortable(mainBoard, {
|
||||
group: 'project-column',
|
||||
draggable: '.project-column',
|
||||
animation: 150,
|
||||
ghostClass: 'card-ghost',
|
||||
handle: '.project-column-header',
|
||||
delayOnTouchOnly: true,
|
||||
delay: 500,
|
||||
onSort: async () => {
|
||||
|
@ -86,8 +85,6 @@ async function initRepoProjectSortable() {
|
|||
const boardCardList = boardColumn.getElementsByClassName('cards')[0];
|
||||
createSortable(boardCardList, {
|
||||
group: 'shared',
|
||||
animation: 150,
|
||||
ghostClass: 'card-ghost',
|
||||
onAdd: moveIssue,
|
||||
onUpdate: moveIssue,
|
||||
delayOnTouchOnly: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue