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
8878dce8
Commit
8878dce8
authored
Feb 02, 2018
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
migrate groups:merge_requests to static bundle
parent
17b8bfc8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+0
-5
app/assets/javascripts/pages/groups/merge_requests/index.js
app/assets/javascripts/pages/groups/merge_requests/index.js
+2
-2
No files found.
app/assets/javascripts/dispatcher.js
View file @
8878dce8
...
@@ -53,11 +53,6 @@ var Dispatcher;
...
@@ -53,11 +53,6 @@ var Dispatcher;
case
'
projects:issues:show
'
:
case
'
projects:issues:show
'
:
shortcut_handler
=
true
;
shortcut_handler
=
true
;
break
;
break
;
case
'
groups:merge_requests
'
:
import
(
'
./pages/groups/merge_requests
'
)
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
dashboard:todos:index
'
:
case
'
dashboard:todos:index
'
:
import
(
'
./pages/dashboard/todos/index
'
)
import
(
'
./pages/dashboard/todos/index
'
)
.
then
(
callDefault
)
.
then
(
callDefault
)
...
...
app/assets/javascripts/pages/groups/merge_requests/index.js
View file @
8878dce8
...
@@ -2,9 +2,9 @@ import projectSelect from '~/project_select';
...
@@ -2,9 +2,9 @@ import projectSelect from '~/project_select';
import
initFilteredSearch
from
'
~/pages/search/init_filtered_search
'
;
import
initFilteredSearch
from
'
~/pages/search/init_filtered_search
'
;
import
{
FILTERED_SEARCH
}
from
'
~/pages/constants
'
;
import
{
FILTERED_SEARCH
}
from
'
~/pages/constants
'
;
export
default
()
=>
{
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
{
initFilteredSearch
({
initFilteredSearch
({
page
:
FILTERED_SEARCH
.
MERGE_REQUESTS
,
page
:
FILTERED_SEARCH
.
MERGE_REQUESTS
,
});
});
projectSelect
();
projectSelect
();
};
}
)
;
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