Cross Reference: link_helper.rb
xref
: /
ontohub
/
app
/
helpers
/
link_helper.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
link_helper.rb revision a15df506ecd7e946d5b09574f9672cdcccb5b7e7
module
LinkHelper
def
counter_link
(
url
,
counter
,
subject
)
text
=
content_tag
(:
strong
,
counter
)
text
<< content_tag
(:span, counter==1 ? subject : subject.pluralize)
link_to text, url
end
end