enju_bookmark 0.1.2.pre → 0.1.2.pre2
Sign up to get free protection for your applications and to get access to all the features.
@@ -24,10 +24,8 @@ module EnjuBookmark
|
|
24
24
|
|
25
25
|
content_tag :div, :class => "hTagcloud" do
|
26
26
|
content_tag :ul, :class => "popularity" do
|
27
|
-
|
28
|
-
|
29
|
-
concat(content_tag :li, link_to(tag.name, manifestations_path(:tag => tag.name), :class => classes[(tag.taggings.size - min).div(divisor)]))
|
30
|
-
end
|
27
|
+
tags.collect do |tag|
|
28
|
+
concat(content_tag :li, link_to(tag.name, manifestations_path(:tag => tag.name), :class => classes[(tag.taggings.size - min).div(divisor)]))
|
31
29
|
end
|
32
30
|
end
|
33
31
|
end
|