BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
fb36355f
Commit
fb36355f
authored
Aug 10, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Different search placeholder depdends on area
parent
01be3204
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
application_helper.rb
app/helpers/application_helper.rb
+9
-0
_search.html.haml
app/views/layouts/_search.html.haml
+1
-1
No files found.
app/helpers/application_helper.rb
View file @
fb36355f
...
...
@@ -226,4 +226,13 @@ module ApplicationHelper
content_tag
:i
,
nil
,
class:
'icon-lock cgreen'
end
def
search_placeholder
if
@project
&&
@project
.
persisted?
"Search in this project"
elsif
@group
&&
@group
.
persisted?
"Search in this group"
else
"Search"
end
end
end
app/views/layouts/_search.html.haml
View file @
fb36355f
.search
=
form_tag
search_path
,
method: :get
,
class:
'navbar-form pull-left'
do
|
f
|
=
text_field_tag
"search"
,
nil
,
placeholder:
"Search"
,
class:
"search-input"
=
text_field_tag
"search"
,
nil
,
placeholder:
search_placeholder
,
class:
"search-input"
=
hidden_field_tag
:group_id
,
@group
.
try
(
:id
)
-
if
@project
&&
@project
.
persisted?
=
hidden_field_tag
:project_id
,
@project
.
id
...
...
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