diff options
-rw-r--r-- | app/views/request/select_authority.rhtml | 1 | ||||
-rw-r--r-- | public/stylesheets/main.css | 4 | ||||
-rw-r--r-- | vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/app/views/request/select_authority.rhtml b/app/views/request/select_authority.rhtml index 9aaa37f4d..0b1c65d13 100644 --- a/app/views/request/select_authority.rhtml +++ b/app/views/request/select_authority.rhtml @@ -17,6 +17,7 @@ $("#typeahead_response .head a").live('click', function() { $("#authority_preview").load(this.href+" #public_body_show", function() { $("#authority_preview").show(); + $(window).scrollTop($("#banner").height()); $("#authority_preview #header_right").hide(); }); return false; diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 1db05486b..471e1151b 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -1624,7 +1624,7 @@ div.controller_help h1 a,#logged_in_bar a,#logged_in_bar a:visited,#stepwise_mak } .request_left,#header_left { -width:625px; +width:100%; float:left; } @@ -1647,4 +1647,4 @@ text-decoration:underline; .request_listing a,.body_listing a,.user_listing a,.request_short_listing a,h2 a,.feed_link a { text-decoration:none; -}
\ No newline at end of file +} diff --git a/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb b/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb index 33ad70d5f..592784ba1 100644 --- a/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb +++ b/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb @@ -544,7 +544,7 @@ module ActsAsXapian # was updated a second time by another process. In that case # ActsAsXapianJob.delete_all in xapian_mark_needs_index below # might have removed the first job record while we are working on it. - STDOUT.puts("job with #{id} vanished under foot") if verbose + #STDERR.puts("job with #{id} vanished under foot") if verbose next end STDOUT.puts("ActsAsXapian.update_index #{job.action} #{job.model} #{job.model_id.to_s} #{Time.now.to_s}") if verbose |