removes underline in tag search form on getting started page

This commit is contained in:
alda519 2011-09-13 08:11:48 +02:00
parent 2022187942
commit 2d47658b08
2 changed files with 3 additions and 3 deletions

View file

@ -128,7 +128,7 @@
= t('.hashtag_explanation')
.span-5.append-1
= form_tag(tags_path, :method => 'get', :class => "tag search_form") do
= form_tag(tags_path, :method => 'get', :class => "tag_input search_form") do
= text_field_tag 'q', nil, :placeholder => t(".search_for_hashtags"), :type => 'search', :results => 5
.span-5.last
%h4{:style => "margin-top:7px;"}

View file

@ -3,6 +3,6 @@ Diaspora.Pages.UsersGettingStarted = function() {
this.subscribe("page/ready", function(evt, body) {
self.peopleSearch = self.instantiate("Search", body.find("form.people.search_form"));
self.tagSearch = self.instantiate("Search", body.find("form.tag.search_form"));
self.tagSearch = self.instantiate("Search", body.find("form.tag_input.search_form"));
});
};
};