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
a00bb743
Commit
a00bb743
authored
Mar 02, 2018
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix specs
parent
eaab051b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
ee/app/assets/javascripts/pages/projects/settings/repository/show/index.js
...ascripts/pages/projects/settings/repository/show/index.js
+7
-0
ee/app/assets/javascripts/projects/mirrors/show/index.js
ee/app/assets/javascripts/projects/mirrors/show/index.js
+0
-6
No files found.
ee/app/assets/javascripts/pages/projects/settings/repository/show/index.js
View file @
a00bb743
...
@@ -7,6 +7,7 @@ import ProtectedTagCreate from 'ee/protected_tags/protected_tag_create';
...
@@ -7,6 +7,7 @@ import ProtectedTagCreate from 'ee/protected_tags/protected_tag_create';
import
ProtectedTagEditList
from
'
ee/protected_tags/protected_tag_edit_list
'
;
import
ProtectedTagEditList
from
'
ee/protected_tags/protected_tag_edit_list
'
;
import
CEProtectedTagCreate
from
'
~/protected_tags/protected_tag_create
'
;
import
CEProtectedTagCreate
from
'
~/protected_tags/protected_tag_create
'
;
import
CEProtectedTagEditList
from
'
~/protected_tags/protected_tag_edit_list
'
;
import
CEProtectedTagEditList
from
'
~/protected_tags/protected_tag_edit_list
'
;
import
MirrorPull
from
'
ee/mirrors/mirror_pull
'
;
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
{
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
{
new
UsersSelect
();
new
UsersSelect
();
...
@@ -20,4 +21,10 @@ document.addEventListener('DOMContentLoaded', () => {
...
@@ -20,4 +21,10 @@ document.addEventListener('DOMContentLoaded', () => {
}
}
initDeployKeys
();
initDeployKeys
();
initSettingsPanels
();
initSettingsPanels
();
const
mirrorPull
=
new
MirrorPull
(
'
.js-project-mirror-push-form
'
);
if
(
mirrorPull
)
{
mirrorPull
.
init
();
}
});
});
ee/app/assets/javascripts/projects/mirrors/show/index.js
deleted
100644 → 0
View file @
eaab051b
import
MirrorPull
from
'
ee/mirrors/mirror_pull
'
;
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
{
const
mirrorPull
=
new
MirrorPull
(
'
.js-project-mirror-push-form
'
);
mirrorPull
.
init
();
});
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