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
2578d7d7
Commit
2578d7d7
authored
Jan 08, 2018
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EE branch for
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/16300
parent
d9014ba8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
7 deletions
+33
-7
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+12
-7
app/assets/javascripts/pages/projects/activity/index.js
app/assets/javascripts/pages/projects/activity/index.js
+7
-0
app/assets/javascripts/pages/projects/artifacts/browse/index.js
...sets/javascripts/pages/projects/artifacts/browse/index.js
+7
-0
app/assets/javascripts/pages/projects/artifacts/file/index.js
...assets/javascripts/pages/projects/artifacts/file/index.js
+7
-0
No files found.
app/assets/javascripts/dispatcher.js
View file @
2578d7d7
...
@@ -12,7 +12,6 @@ import notificationsDropdown from './notifications_dropdown';
...
@@ -12,7 +12,6 @@ import notificationsDropdown from './notifications_dropdown';
import
groupAvatar
from
'
./group_avatar
'
;
import
groupAvatar
from
'
./group_avatar
'
;
import
GroupLabelSubscription
from
'
./group_label_subscription
'
;
import
GroupLabelSubscription
from
'
./group_label_subscription
'
;
import
LineHighlighter
from
'
./line_highlighter
'
;
import
LineHighlighter
from
'
./line_highlighter
'
;
import
BuildArtifacts
from
'
./build_artifacts
'
;
import
CILintEditor
from
'
./ci_lint_editor
'
;
import
CILintEditor
from
'
./ci_lint_editor
'
;
import
groupsSelect
from
'
./groups_select
'
;
import
groupsSelect
from
'
./groups_select
'
;
import
Search
from
'
./search
'
;
import
Search
from
'
./search
'
;
...
@@ -392,8 +391,10 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
...
@@ -392,8 +391,10 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
$
(
'
.commit-info.branches
'
).
load
(
document
.
querySelector
(
'
.js-commit-box
'
).
dataset
.
commitPath
);
$
(
'
.commit-info.branches
'
).
load
(
document
.
querySelector
(
'
.js-commit-box
'
).
dataset
.
commitPath
);
break
;
break
;
case
'
projects:activity
'
:
case
'
projects:activity
'
:
new
Activities
();
import
(
'
./pages/projects/activity
'
)
shortcut_handler
=
new
ShortcutsNavigation
();
.
then
(
callDefault
)
.
catch
(
fail
);
shortcut_handler
=
true
;
break
;
break
;
case
'
projects:commits:show
'
:
case
'
projects:commits:show
'
:
CommitsList
.
init
(
document
.
querySelector
(
'
.js-project-commits-show
'
).
dataset
.
commitsLimit
);
CommitsList
.
init
(
document
.
querySelector
(
'
.js-project-commits-show
'
).
dataset
.
commitsLimit
);
...
@@ -556,12 +557,16 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
...
@@ -556,12 +557,16 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
.
catch
(()
=>
{});
.
catch
(()
=>
{});
break
;
break
;
case
'
projects:artifacts:browse
'
:
case
'
projects:artifacts:browse
'
:
new
ShortcutsNavigation
();
import
(
'
./pages/projects/artifacts/browse
'
)
new
BuildArtifacts
();
.
then
(
callDefault
)
.
catch
(
fail
);
shortcut_handler
=
true
;
break
;
break
;
case
'
projects:artifacts:file
'
:
case
'
projects:artifacts:file
'
:
new
ShortcutsNavigation
();
import
(
'
./pages/projects/artifacts/file
'
)
new
BlobViewer
();
.
then
(
callDefault
)
.
catch
(
fail
);
shortcut_handler
=
true
;
break
;
break
;
case
'
help:index
'
:
case
'
help:index
'
:
VersionCheckImage
.
bindErrorEvent
(
$
(
'
img.js-version-status-badge
'
));
VersionCheckImage
.
bindErrorEvent
(
$
(
'
img.js-version-status-badge
'
));
...
...
app/assets/javascripts/pages/projects/activity/index.js
0 → 100644
View file @
2578d7d7
import
Activities
from
'
~/activities
'
;
import
ShortcutsNavigation
from
'
~/shortcuts_navigation
'
;
export
default
function
()
{
new
Activities
();
// eslint-disable-line no-new
new
ShortcutsNavigation
();
// eslint-disable-line no-new
}
app/assets/javascripts/pages/projects/artifacts/browse/index.js
0 → 100644
View file @
2578d7d7
import
BuildArtifacts
from
'
~/build_artifacts
'
;
import
ShortcutsNavigation
from
'
~/shortcuts_navigation
'
;
export
default
function
()
{
new
ShortcutsNavigation
();
// eslint-disable-line no-new
new
BuildArtifacts
();
// eslint-disable-line no-new
}
app/assets/javascripts/pages/projects/artifacts/file/index.js
0 → 100644
View file @
2578d7d7
import
BlobViewer
from
'
~/blob/viewer/index
'
;
import
ShortcutsNavigation
from
'
~/shortcuts_navigation
'
;
export
default
function
()
{
new
ShortcutsNavigation
();
// eslint-disable-line no-new
new
BlobViewer
();
// 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