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
Kazuhiko Shiozaki
gitlab-ce
Commits
b62d6a1f
Commit
b62d6a1f
authored
Sep 25, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove commit_tab_class helper
parent
86a7864d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
app/helpers/tab_helper.rb
app/helpers/tab_helper.rb
+0
-6
app/views/layouts/_project_menu.html.haml
app/views/layouts/_project_menu.html.haml
+1
-1
No files found.
app/helpers/tab_helper.rb
View file @
b62d6a1f
...
...
@@ -51,12 +51,6 @@ module TabHelper
end
end
def
commit_tab_class
if
[
'commits'
,
'repositories'
,
'protected_branches'
].
include?
controller
.
controller_name
"active"
end
end
def
branches_tab_class
if
current_page?
(
branches_project_repository_path
(
@project
))
||
controller
.
controller_name
==
"protected_branches"
||
...
...
app/views/layouts/_project_menu.html.haml
View file @
b62d6a1f
...
...
@@ -6,7 +6,7 @@
-
if
can?
current_user
,
:download_code
,
@project
%li
{
class:
current_controller?
(
:tree
,
:blob
,
:blame
)
?
'active'
:
''
}
=
link_to
'Files'
,
project_tree_path
(
@project
,
@project
.
root_ref
)
%li
{
class:
c
ommit_tab_class
}
%li
{
class:
c
urrent_controller?
(
:commit
,
:commits
,
:compare
,
:repositories
,
:protected_branches
)
?
'active'
:
''
}
=
link_to
"Commits"
,
project_commits_path
(
@project
,
@project
.
root_ref
)
%li
{
class:
tab_class
(
:network
)}
=
link_to
"Network"
,
graph_project_path
(
@project
)
...
...
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