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
adf31a57
Unverified
Commit
adf31a57
authored
Jan 23, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added imports for dispatcher routes
parent
74da7911
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
17 deletions
+7
-17
dispatcher.js
app/assets/javascripts/dispatcher.js
+3
-17
index.js
app/assets/javascripts/pages/projects/show/index.js
+4
-0
No files found.
app/assets/javascripts/dispatcher.js
View file @
adf31a57
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-arrow-callback, wrap-iife, no-shadow, consistent-return, one-var, one-var-declaration-per-line, camelcase, default-case, no-new, quotes, no-duplicate-case, no-case-declarations, no-fallthrough, max-len */
import
notificationsDropdown
from
'./notifications_dropdown'
;
import
LineHighlighter
from
'./line_highlighter'
;
import
MergeRequest
from
'./merge_request'
;
import
Flash
from
'./flash'
;
import
BlobViewer
from
'./blob/viewer/index'
;
import
GfmAutoComplete
from
'./gfm_auto_complete'
;
import
Star
from
'./star'
;
import
ZenMode
from
'./zen_mode'
;
import
PerformanceBar
from
'./performance_bar'
;
import
initNotes
from
'./init_notes'
;
import
initIssuableSidebar
from
'./init_issuable_sidebar'
;
import
{
convertPermissionToBoolean
}
from
'./lib/utils/common_utils'
;
...
...
@@ -621,23 +616,12 @@ import SearchAutocomplete from './search_autocomplete';
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'show'
:
new
Star
();
notificationsDropdown
();
break
;
case
'wikis'
:
import
(
'./pages/projects/wikis'
)
.
then
(
callDefault
)
.
catch
(
fail
);
shortcut_handler
=
true
;
break
;
case
'snippets'
:
if
(
path
[
2
]
===
'show'
)
{
new
ZenMode
();
new
LineHighlighter
();
new
BlobViewer
();
}
break
;
}
break
;
}
...
...
@@ -647,7 +631,9 @@ import SearchAutocomplete from './search_autocomplete';
}
if
(
document
.
querySelector
(
'#peek'
))
{
new
PerformanceBar
({
container
:
'#peek'
});
import
(
'./performance_bar'
)
.
then
(
m
=>
new
m
.
default
({
container
:
'#peek'
}))
// eslint-disable-line new-cap
.
catch
(
fail
);
}
};
...
...
app/assets/javascripts/pages/projects/show/index.js
View file @
adf31a57
...
...
@@ -5,8 +5,12 @@ import TreeView from '~/tree';
import
BlobViewer
from
'~/blob/viewer/index'
;
import
Activities
from
'~/activities'
;
import
{
ajaxGet
}
from
'~/lib/utils/common_utils'
;
import
Star
from
'../../../star'
;
import
notificationsDropdown
from
'../../../notifications_dropdown'
;
export
default
()
=>
{
new
Star
();
// eslint-disable-line no-new
notificationsDropdown
();
new
ShortcutsNavigation
();
// eslint-disable-line no-new
new
NotificationsForm
();
// eslint-disable-line no-new
new
UserCallout
({
// eslint-disable-line no-new
...
...
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