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
958a499a
Commit
958a499a
authored
Dec 15, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix eslint errors
parent
58597bf5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
dispatcher.js.es6
app/assets/javascripts/dispatcher.js.es6
+1
-1
issues_bulk_assignment.js.es6
app/assets/javascripts/issues_bulk_assignment.js.es6
+7
-7
labels_select.js
app/assets/javascripts/labels_select.js
+1
-1
render_math.js
app/assets/javascripts/render_math.js
+1
-1
No files found.
app/assets/javascripts/dispatcher.js.es6
View file @
958a499a
...
...
@@ -75,7 +75,7 @@
case 'projects:issues:index':
Issuable.init();
new gl.IssuableBulkActions({
prefixId: page === 'projects:merge_requests:index' ?
'merge_request_' : 'issue_'
prefixId: page === 'projects:merge_requests:index' ?
'merge_request_' : 'issue_',
});
shortcut_handler = new ShortcutsNavigation();
break;
...
...
app/assets/javascripts/issues_bulk_assignment.js.es6
View file @
958a499a
...
...
@@ -6,7 +6,7 @@
class IssuableBulkActions {
constructor({ container, form, issues, prefixId } = {}) {
this.prefixId = prefixId ||
'issue_';
this.prefixId = prefixId ||
'issue_';
this.form = form || this.getElement('.bulk-update');
this.$labelDropdown = this.form.find('.js-label-select');
this.issues = issues || this.getElement('.issues-list .issue');
...
...
@@ -107,7 +107,7 @@
}
setOriginalDropdownData() {
le
t $labelSelect = $('.bulk-update .js-label-select');
cons
t $labelSelect = $('.bulk-update .js-label-select');
$labelSelect.data('common', this.getOriginalCommonIds());
$labelSelect.data('marked', this.getOriginalMarkedIds());
$labelSelect.data('indeterminate', this.getOriginalIndeterminateIds());
...
...
@@ -115,7 +115,7 @@
// From issuable's initial bulk selection
getOriginalCommonIds() {
le
t labelIds = [];
cons
t labelIds = [];
this.getElement('.selected_issue:checked').each((i, el) => {
labelIds.push(this.getElement(`#${this.prefixId}${el.dataset.id}`).data('labels'));
...
...
@@ -125,17 +125,17 @@
// From issuable's initial bulk selection
getOriginalMarkedIds() {
var
labelIds = [];
const
labelIds = [];
this.getElement('.selected_issue:checked').each((i, el) => {
labelIds.push(this.getElement(`#${this.prefixId}${el.dataset.id}`).data('labels'));
});
return _.intersection.apply(
_
, labelIds);
return _.intersection.apply(
this
, labelIds);
}
// From issuable's initial bulk selection
getOriginalIndeterminateIds() {
le
t uniqueIds = [];
le
t labelIds = [];
cons
t uniqueIds = [];
cons
t labelIds = [];
let issuableLabels = [];
// Collect unique label IDs for all checked issues
...
...
app/assets/javascripts/labels_select.js
View file @
958a499a
...
...
@@ -8,7 +8,7 @@
var
_this
;
_this
=
this
;
$
(
'.js-label-select'
).
each
(
function
(
i
,
dropdown
)
{
var
$block
,
$colorPreview
,
$dropdown
,
$form
,
$loading
,
$selectbox
,
$sidebarCollapsedValue
,
$value
,
abilityName
,
defaultLabel
,
enableLabelCreateButton
,
issueURLSplit
,
issueUpdateURL
,
labelHTMLTemplate
,
labelNoneHTMLTemplate
,
labelUrl
,
namespacePath
,
projectPath
,
saveLabelData
,
selectedLabel
,
showAny
,
showNo
,
$sidebarLabelTooltip
,
initialSelected
,
$toggleText
,
fieldName
,
useId
,
propertyName
,
showMenuAbove
,
$container
;
var
$block
,
$colorPreview
,
$dropdown
,
$form
,
$loading
,
$selectbox
,
$sidebarCollapsedValue
,
$value
,
abilityName
,
defaultLabel
,
enableLabelCreateButton
,
issueURLSplit
,
issueUpdateURL
,
labelHTMLTemplate
,
labelNoneHTMLTemplate
,
labelUrl
,
namespacePath
,
projectPath
,
saveLabelData
,
selectedLabel
,
showAny
,
showNo
,
$sidebarLabelTooltip
,
initialSelected
,
$toggleText
,
fieldName
,
useId
,
propertyName
,
showMenuAbove
,
$container
,
$dropdownContainer
;
$dropdown
=
$
(
dropdown
);
$dropdownContainer
=
$dropdown
.
closest
(
'.labels-filter'
);
$toggleText
=
$dropdown
.
find
(
'.dropdown-toggle-text'
);
...
...
app/assets/javascripts/render_math.js
View file @
958a499a
/* eslint-disable func-names, space-before-function-paren, consistent-return, no-var, no-undef, no-else-return, prefer-arrow-callback, padded-blocks, max-len */
/* eslint-disable func-names, space-before-function-paren, consistent-return, no-var, no-undef, no-else-return, prefer-arrow-callback, padded-blocks, max-len
, no-console
*/
// Renders math using KaTeX in any element with the
// `js-render-math` class
//
...
...
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