From 2d47658b08346fef6d452031daaad44c8e6762ab Mon Sep 17 00:00:00 2001 From: alda519 Date: Tue, 13 Sep 2011 08:11:48 +0200 Subject: [PATCH] removes underline in tag search form on getting started page --- app/views/users/getting_started.haml | 2 +- public/javascripts/pages/users-getting-started.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/users/getting_started.haml b/app/views/users/getting_started.haml index c0b0f6bb3..a9d226c2b 100644 --- a/app/views/users/getting_started.haml +++ b/app/views/users/getting_started.haml @@ -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;"} diff --git a/public/javascripts/pages/users-getting-started.js b/public/javascripts/pages/users-getting-started.js index dc00a6b22..ebc62dc60 100644 --- a/public/javascripts/pages/users-getting-started.js +++ b/public/javascripts/pages/users-getting-started.js @@ -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")); }); -}; \ No newline at end of file +};