diff --git a/app/views/tags/show.haml b/app/views/tags/show.haml index b834080111c2f9c595ffa86c1c2af4a7728d249f..fd7867d757dcae8044d9e501596e2124f73789e8 100644 --- a/app/views/tags/show.haml +++ b/app/views/tags/show.haml @@ -13,6 +13,7 @@ = include_javascripts :home :javascript $(document).ready(function(){ + // Change the text and color of the "follow this tag" button on hover. $(".button.tag_following").hover(function(){ $this = $(this); $this.removeClass("in_aspects"); @@ -24,6 +25,11 @@ $this.val("#{t('.following', :tag => params[:name])}"); }); }); + $(".people_stream .pagination a").live("click", function() { + $.getScript(this.href); + return false; + }); + - content_for :body_class do = "tags_show"