Mercurial > zeropaste
annotate app/helpers/application_helper.rb @ 440:f4612faedb9e
hybrid for migration
author | nanaya <me@myconan.net> |
---|---|
date | Sat, 02 Jul 2016 17:26:21 +0900 |
parents | d31fe32da7a0 |
children | 68231013b01b |
rev | line source |
---|---|
0 | 1 module ApplicationHelper |
26 | 2 def html_title |
331 | 3 base_title = "Zeropaste" |
26 | 4 if content_for? :title |
5 "#{content_for(:title)} | #{h base_title}".html_safe | |
6 else | |
7 base_title | |
8 end | |
9 end | |
398 | 10 |
11 def error_class(object, attribute) | |
12 "has-error" if object.errors.include? attribute | |
13 end | |
437 | 14 |
15 def with_host(url) | |
16 return url if url[0] != "/" | |
17 | |
18 "#{request.protocol}#{request.host_with_port}#{url}" | |
19 end | |
0 | 20 end |