Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bcd00c85
Commit
bcd00c85
authored
Dec 28, 2017
by
Constance Okoghenun
Committed by
Jacob Schatz
Dec 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "Webpack Roadmap"
parent
eb400b5e
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
212 additions
and
221 deletions
+212
-221
app/assets/javascripts/boards/components/board_sidebar.js
app/assets/javascripts/boards/components/board_sidebar.js
+1
-1
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+1
-1
app/assets/javascripts/init_issuable_sidebar.js
app/assets/javascripts/init_issuable_sidebar.js
+2
-1
app/assets/javascripts/init_legacy_filters.js
app/assets/javascripts/init_legacy_filters.js
+1
-1
app/assets/javascripts/issuable_bulk_update_sidebar.js
app/assets/javascripts/issuable_bulk_update_sidebar.js
+1
-2
app/assets/javascripts/milestone_select.js
app/assets/javascripts/milestone_select.js
+206
-215
No files found.
app/assets/javascripts/boards/components/board_sidebar.js
View file @
bcd00c85
/* eslint-disable comma-dangle, space-before-function-paren, no-new */
/* global MilestoneSelect */
import
Vue
from
'
vue
'
;
import
Flash
from
'
../../flash
'
;
...
...
@@ -12,6 +11,7 @@ import './sidebar/remove_issue';
import
IssuableContext
from
'
../../issuable_context
'
;
import
LabelsSelect
from
'
../../labels_select
'
;
import
subscriptions
from
'
../../sidebar/components/subscriptions/subscriptions.vue
'
;
import
MilestoneSelect
from
'
../../milestone_select
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
...
...
app/assets/javascripts/dispatcher.js
View file @
bcd00c85
...
...
@@ -5,7 +5,7 @@ import IssuableIndex from './issuable_index';
import
Milestone
from
'
./milestone
'
;
import
IssuableForm
from
'
./issuable_form
'
;
import
LabelsSelect
from
'
./labels_select
'
;
/* global MilestoneSelect */
import
MilestoneSelect
from
'
./milestone_select
'
;
import
NewBranchForm
from
'
./new_branch_form
'
;
import
NotificationsForm
from
'
./notifications_form
'
;
import
notificationsDropdown
from
'
./notifications_dropdown
'
;
...
...
app/assets/javascripts/init_issuable_sidebar.js
View file @
bcd00c85
/* eslint-disable no-new */
/* global MilestoneSelect */
import
MilestoneSelect
from
'
./milestone_select
'
;
import
LabelsSelect
from
'
./labels_select
'
;
import
IssuableContext
from
'
./issuable_context
'
;
import
Sidebar
from
'
./right_sidebar
'
;
...
...
app/assets/javascripts/init_legacy_filters.js
View file @
bcd00c85
/* eslint-disable no-new */
import
LabelsSelect
from
'
./labels_select
'
;
/* global MilestoneSelect */
import
subscriptionSelect
from
'
./subscription_select
'
;
import
UsersSelect
from
'
./users_select
'
;
import
issueStatusSelect
from
'
./issue_status_select
'
;
import
MilestoneSelect
from
'
./milestone_select
'
;
export
default
()
=>
{
new
UsersSelect
();
...
...
app/assets/javascripts/issuable_bulk_update_sidebar.js
View file @
bcd00c85
/* eslint-disable class-methods-use-this, no-new */
/* global MilestoneSelect */
import
IssuableBulkUpdateActions
from
'
./issuable_bulk_update_actions
'
;
import
'
./milestone_select
'
;
import
MilestoneSelect
from
'
./milestone_select
'
;
import
issueStatusSelect
from
'
./issue_status_select
'
;
import
subscriptionSelect
from
'
./subscription_select
'
;
import
LabelsSelect
from
'
./labels_select
'
;
...
...
app/assets/javascripts/milestone_select.js
View file @
bcd00c85
This diff is collapsed.
Click to expand it.
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