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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+9
-0
app/views/layouts/_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
...
@@ -226,4 +226,13 @@ module ApplicationHelper
content_tag
:i
,
nil
,
class:
'icon-lock cgreen'
content_tag
:i
,
nil
,
class:
'icon-lock cgreen'
end
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
end
app/views/layouts/_search.html.haml
View file @
fb36355f
.search
.search
=
form_tag
search_path
,
method: :get
,
class:
'navbar-form pull-left'
do
|
f
|
=
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
)
=
hidden_field_tag
:group_id
,
@group
.
try
(
:id
)
-
if
@project
&&
@project
.
persisted?
-
if
@project
&&
@project
.
persisted?
=
hidden_field_tag
:project_id
,
@project
.
id
=
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