From f060f6e539d37f32426598e55533f0fc987a050c Mon Sep 17 00:00:00 2001 From: "stephen@cubedesigners.com" Date: Mon, 8 Jun 2015 13:31:28 +0000 Subject: [PATCH] Fix home page slideshow to work with updated slideshow.js script. Also fix a typo in slideshow.js for width setting on responsive slideshows. --- framework/application/views/helpers/HomeSlideshow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/application/views/helpers/HomeSlideshow.php b/framework/application/views/helpers/HomeSlideshow.php index 2072bf8..79c3bc5 100644 --- a/framework/application/views/helpers/HomeSlideshow.php +++ b/framework/application/views/helpers/HomeSlideshow.php @@ -41,7 +41,7 @@ class Cubedesigners_View_Helper_HomeSlideshow extends CubeIT_View_Helper_Abstrac $s .= $this->view->htmlElement($mask . $this->view->linkCMS($link), 'div', $attributes); } - $options = array('arrows' => true, 'arrowspermanent' => true, 'autoMode' => true, 'transitionType' => 'slide', 'baseHeight' => 572); + $options = array('arrows' => true, 'arrowspermanent' => true, 'autoMode' => true, 'transitionType' => 'slide', 'baseHeight' => 572, 'responsive' => true); $res .= $this->htmlElement($s, 'div', array('class' => 'slides slideshow', 'data-options' => $options)); $res .= ''; -- 2.39.5