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
4b45a1b3
Commit
4b45a1b3
authored
Jul 20, 2017
by
kushalpandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialize module on bundle load
parent
083ad120
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
app/assets/javascripts/protected_branches/index.js
app/assets/javascripts/protected_branches/index.js
+9
-2
app/assets/javascripts/protected_tags/index.js
app/assets/javascripts/protected_tags/index.js
+9
-2
No files found.
app/assets/javascripts/protected_branches/index.js
View file @
4b45a1b3
export
{
default
as
ProtectedBranchCreate
}
from
'
./protected_branch_create
'
;
export
{
default
as
ProtectedBranchEditList
}
from
'
./protected_branch_edit_list
'
;
/* eslint-disable no-unused-vars */
import
ProtectedBranchCreate
from
'
./protected_branch_create
'
;
import
ProtectedBranchEditList
from
'
./protected_branch_edit_list
'
;
$
(()
=>
{
const
protectedBranchCreate
=
new
ProtectedBranchCreate
();
const
protectedBranchEditList
=
new
ProtectedBranchEditList
();
});
app/assets/javascripts/protected_tags/index.js
View file @
4b45a1b3
export
{
default
as
ProtectedTagCreate
}
from
'
./protected_tag_create
'
;
export
{
default
as
ProtectedTagEditList
}
from
'
./protected_tag_edit_list
'
;
/* eslint-disable no-unused-vars */
import
ProtectedTagCreate
from
'
./protected_tag_create
'
;
import
ProtectedTagEditList
from
'
./protected_tag_edit_list
'
;
$
(()
=>
{
const
protectedtTagCreate
=
new
ProtectedTagCreate
();
const
protectedtTagEditList
=
new
ProtectedTagEditList
();
});
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