BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
d1f4a812
Commit
d1f4a812
authored
Aug 19, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hides tooltip when dragging
Fixes issue with cursor not changing when dragging
parent
67d9e922
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
13 deletions
+15
-13
board.js.es6
app/assets/javascripts/boards/components/board.js.es6
+1
-1
board_list.js.es6
app/assets/javascripts/boards/components/board_list.js.es6
+1
-3
sortable_default_options.js.es6
...javascripts/boards/mixins/sortable_default_options.js.es6
+13
-9
No files found.
app/assets/javascripts/boards/components/board.js.es6
View file @
d1f4a812
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
draggable: '.is-draggable',
draggable: '.is-draggable',
handle: '.js-board-handle',
handle: '.js-board-handle',
onEnd: (e) => {
onEnd: (e) => {
document.body.classList.remove('is-dragging'
);
gl.issueBoards.onEnd(
);
if (e.newIndex !== undefined && e.oldIndex !== e.newIndex) {
if (e.newIndex !== undefined && e.oldIndex !== e.newIndex) {
const order = this.sortable.toArray(),
const order = this.sortable.toArray(),
...
...
app/assets/javascripts/boards/components/board_list.js.es6
View file @
d1f4a812
...
@@ -64,9 +64,7 @@
...
@@ -64,9 +64,7 @@
Store.moving.issue = card.issue;
Store.moving.issue = card.issue;
Store.moving.list = card.list;
Store.moving.list = card.list;
$('.has-tooltip').tooltip('hide')
gl.issueBoards.onStart();
.tooltip('disable');
document.body.classList.add('is-dragging');
},
},
onAdd: (e) => {
onAdd: (e) => {
gl.issueBoards.BoardsStore.moveIssueToList(Store.moving.list, this.list, Store.moving.issue);
gl.issueBoards.BoardsStore.moveIssueToList(Store.moving.list, this.list, Store.moving.issue);
...
...
app/assets/javascripts/boards/mixins/sortable_default_options.js.es6
View file @
d1f4a812
...
@@ -2,6 +2,17 @@
...
@@ -2,6 +2,17 @@
window.gl = window.gl || {};
window.gl = window.gl || {};
window.gl.issueBoards = window.gl.issueBoards || {};
window.gl.issueBoards = window.gl.issueBoards || {};
gl.issueBoards.onStart = () => {
$('.has-tooltip').tooltip('hide')
.tooltip('disable');
document.body.classList.add('is-dragging');
};
gl.issueBoards.onEnd = () => {
$('.has-tooltip').tooltip('enable');
document.body.classList.remove('is-dragging');
};
gl.issueBoards.getBoardSortableDefaultOptions = (obj) => {
gl.issueBoards.getBoardSortableDefaultOptions = (obj) => {
let defaultSortOptions = {
let defaultSortOptions = {
forceFallback: true,
forceFallback: true,
...
@@ -11,15 +22,8 @@
...
@@ -11,15 +22,8 @@
filter: '.has-tooltip',
filter: '.has-tooltip',
scrollSensitivity: 100,
scrollSensitivity: 100,
scrollSpeed: 20,
scrollSpeed: 20,
onStart () {
onStart: gl.issueBoards.onStart,
$('.has-tooltip').tooltip('hide')
onEnd: gl.issueBoards.onEnd
.tooltip('disable');
document.body.classList.add('is-dragging');
},
onEnd () {
$('.has-tooltip').tooltip('enable');
document.body.classList.remove('is-dragging');
}
}
}
Object.keys(obj).forEach((key) => { defaultSortOptions[key] = obj[key]; });
Object.keys(obj).forEach((key) => { defaultSortOptions[key] = obj[key]; });
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment