Skip to content

Commit

Permalink
Fixed a CSS class issue with C-header_back
Browse files Browse the repository at this point in the history
  • Loading branch information
brzaik committed Jul 13, 2012
1 parent d36c5e2 commit ff0869e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module ApplicationHelper
# in the header elements.
def back_button(path, name = "Back", options = {})
options[:class] ||= "button back"
tag("div", {:class => "C-header_back"}, true) + link_to(name, path, options) + raw("</div>")
tag("div", {:class => "viewblock-header_back"}, true) + link_to(name, path, options) + raw("</div>")
end

# Generate page titles.
Expand Down

0 comments on commit ff0869e

Please sign in to comment.