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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
7d0a1285
Commit
7d0a1285
authored
Jan 11, 2018
by
Constance Okoghenun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed experimental feature flag unsed depenecy for profiles/preferences
parent
5d58766f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+3
-6
app/assets/javascripts/pages/profiles/preferences/index.js
app/assets/javascripts/pages/profiles/preferences/index.js
+0
-3
No files found.
app/assets/javascripts/dispatcher.js
View file @
7d0a1285
...
...
@@ -156,11 +156,6 @@ import Activities from './activities';
const
filteredSearchEnabled
=
gl
.
FilteredSearchManager
&&
document
.
querySelector
(
'
.filtered-search
'
);
switch
(
page
)
{
case
'
profiles:preferences:show
'
:
import
(
'
./pages/profiles/preferences
'
)
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
sessions:new
'
:
new
UsernameValidator
();
new
SigninTabsMemoizer
();
...
...
@@ -512,7 +507,9 @@ import Activities from './activities';
new
BlobViewer
();
break
;
case
'
help:index
'
:
import
(
'
./pages/help
'
).
then
(
module
=>
module
.
default
()).
catch
(
fail
);
import
(
'
./pages/help
'
)
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
search:show
'
:
new
Search
();
...
...
app/assets/javascripts/pages/profiles/preferences/index.js
deleted
100644 → 0
View file @
5d58766f
import
initExperimentalFlags
from
'
../../../experimental_flags
'
;
export
default
()
=>
initExperimentalFlags
();
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