spree_multi_slideshow 0.70.72 → 0.70.73
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/app/helpers/slideshow_types_helper.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
module SlideshowTypesHelper
|
2
2
|
|
3
3
|
def insert_slideshow(params={})
|
4
|
-
@@slideshow =
|
4
|
+
@@slideshow = SlideshowType.enable.find_by_category(params[:category])
|
5
5
|
if @@slideshow.blank? || (!@@slideshow.blank? && @@slideshow.slides.empty?)
|
6
6
|
return ''
|
7
7
|
end
|