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
e1b3c02d
Commit
e1b3c02d
authored
Jul 04, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enables the option in user preferences to turn on the new navigation
parent
f7e7e40d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
26 deletions
+18
-26
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+0
-4
app/views/layouts/header/_default.html.haml
app/views/layouts/header/_default.html.haml
+2
-3
app/views/profiles/preferences/show.html.haml
app/views/profiles/preferences/show.html.haml
+16
-19
No files found.
app/helpers/application_helper.rb
View file @
e1b3c02d
...
...
@@ -298,10 +298,6 @@ module ApplicationHelper
end
end
def
can_toggle_new_nav?
Rails
.
env
.
development?
end
def
show_new_nav?
cookies
[
"new_nav"
]
==
"true"
end
...
...
app/views/layouts/header/_default.html.haml
View file @
e1b3c02d
...
...
@@ -74,9 +74,8 @@
=
link_to
"Profile"
,
current_user
,
class:
'profile-link'
,
data:
{
user:
current_user
.
username
}
%li
=
link_to
"Settings"
,
profile_path
-
if
can_toggle_new_nav?
%li
=
link_to
"Turn on new nav"
,
profile_preferences_path
(
anchor:
"new-navigation"
)
%li
=
link_to
"Turn on new nav"
,
profile_preferences_path
(
anchor:
"new-navigation"
)
%li
.divider
%li
=
link_to
"Sign out"
,
destroy_user_session_path
,
method: :delete
,
class:
"sign-out-link"
...
...
app/views/profiles/preferences/show.html.haml
View file @
e1b3c02d
...
...
@@ -16,25 +16,22 @@
.preview
=
image_tag
"
#{
scheme
.
css_class
}
-scheme-preview.png"
=
f
.
radio_button
:color_scheme_id
,
scheme
.
id
=
scheme
.
name
-
if
can_toggle_new_nav?
.col-sm-12
%hr
.col-lg-3.profile-settings-sidebar
#new-navigation
%h4
.prepend-top-0
New Navigation
%p
This setting allows you to turn on or off the new upcoming navigation concept.
=
succeed
'.'
do
=
link_to
'Learn more'
,
''
,
target:
'_blank'
.col-lg-9.syntax-theme
=
label_tag
do
.preview
=
image_tag
"old_nav.png"
%input
.js-experiment-feature-toggle
{
type:
"radio"
,
value:
"false"
,
name:
"new_nav"
,
checked:
!
show_new_nav?
}
Old
=
label_tag
do
.preview
=
image_tag
"new_nav.png"
%input
.js-experiment-feature-toggle
{
type:
"radio"
,
value:
"true"
,
name:
"new_nav"
,
checked:
show_new_nav?
}
New
.col-sm-12
%hr
.col-lg-3.profile-settings-sidebar
#new-navigation
%h4
.prepend-top-0
New Navigation
%p
This setting allows you to turn on or off the new upcoming navigation concept.
.col-lg-9.syntax-theme
=
label_tag
do
.preview
=
image_tag
"old_nav.png"
%input
.js-experiment-feature-toggle
{
type:
"radio"
,
value:
"false"
,
name:
"new_nav"
,
checked:
!
show_new_nav?
}
Old
=
label_tag
do
.preview
=
image_tag
"new_nav.png"
%input
.js-experiment-feature-toggle
{
type:
"radio"
,
value:
"true"
,
name:
"new_nav"
,
checked:
show_new_nav?
}
New
.col-sm-12
%hr
.col-lg-4.profile-settings-sidebar
...
...
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