Responsive_Banner_Slider - Version 1.0.2

Version Notes

Capacity Web Solutions - Responsive Banner Slider

Download this release

Release Info

Developer Capacity Web Solutions
Extension Responsive_Banner_Slider
Version 1.0.2
Comparing to
See all releases


Code changes from version 1.0.1 to 1.0.2

app/code/community/CapacityWebSolutions/Responsivebannerslider/controllers/Adminhtml/SlidergroupController.php CHANGED
@@ -348,6 +348,7 @@ class CapacityWebSolutions_Responsivebannerslider_Adminhtml_SlidergroupControlle
348
  $pagination_color = $groupdata->getPaginationColor();
349
  $pagination_active_color = $groupdata->getPaginationActive();
350
  $pagination_bar = $groupdata->getPaginationBar();
 
351
 
352
  if ($max_width > 0) {
353
  $max_width = $groupdata->getMaxWidth().'px';
@@ -363,6 +364,7 @@ class CapacityWebSolutions_Responsivebannerslider_Adminhtml_SlidergroupControlle
363
  $css .= '#bnrSlider-'.$group_id.' .cws-pager a.cws-active { background-color:#'.$pagination_active_color.'; }';
364
  $css .= '#bnrSlider-'.$group_id.' .cws-pager.cir-bar { background-color:#'.$pagination_bar.'; }';
365
  $css .= '#bnrSlider-'.$group_id.' .cws-pager.squ-bar { background-color:#'.$pagination_bar.'; }';
 
366
  return $css;
367
  }
368
 
348
  $pagination_color = $groupdata->getPaginationColor();
349
  $pagination_active_color = $groupdata->getPaginationActive();
350
  $pagination_bar = $groupdata->getPaginationBar();
351
+ $thumbnail_size = $groupdata->getThumbnailSize();
352
 
353
  if ($max_width > 0) {
354
  $max_width = $groupdata->getMaxWidth().'px';
364
  $css .= '#bnrSlider-'.$group_id.' .cws-pager a.cws-active { background-color:#'.$pagination_active_color.'; }';
365
  $css .= '#bnrSlider-'.$group_id.' .cws-pager.cir-bar { background-color:#'.$pagination_bar.'; }';
366
  $css .= '#bnrSlider-'.$group_id.' .cws-pager.squ-bar { background-color:#'.$pagination_bar.'; }';
367
+ $css .= '@media (min-width:999px){#carousel-'.$group_id.' ul.slides li { width:'.$thumbnail_size.'px !important;}}';
368
  return $css;
369
  }
370
 
app/design/frontend/base/default/template/responsivebannerslider/slider.phtml CHANGED
@@ -153,14 +153,14 @@
153
  webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></li>
154
  <?php } else { ?>
155
  <?php
156
- if ($slide->getData ( 'filename' )) {
157
- $imgsrc = Mage::getBaseUrl ( 'media' ) . "responsivebannerslider/" . $slide->getData ( 'filename' );
158
- } else {
159
- if ($slide->getData ( 'hosted_thumb' )) {
160
- $imgsrc = $slide->getHostedThumb ();
161
- } else {
162
  $imgsrc = $slide->getHostedUrl ();
163
  }
 
 
 
 
164
  }
165
  $loading_img = $this->getSkinUrl ( 'css/responsivebannerslider/loading.gif' );
166
  ?>
@@ -224,16 +224,16 @@
224
  alt="<?php echo $this->escapeHtml($slide->getTitles()) ?>" /></a></li>
225
  <?php }else{ ?>
226
  <?php
227
- if ($slide->getData ( 'filename' )) {
228
- $imgsrc = Mage::getBaseUrl ( 'media' ) . "responsivebannerslider/thumbnails/" . $slide->getData ( 'filename' );
229
- } else {
230
  if ($slide->getData ( 'hosted_thumb' )) {
231
  $imgsrc = $slide->getHostedThumb ();
232
- } else {
233
- $imgsrc = $slide->getHostedUrl ();
 
 
234
  }
235
  }
236
- ?>
237
  <li><?php if($slide->getUrl()) {?><a
238
  href="<?php echo $slide->getUrl(); ?>"
239
  title="<?php echo $slide->getUrl(); ?>"
@@ -286,16 +286,16 @@
286
  alt="<?php echo $this->escapeHtml($slide->getTitles()) ?>" /></li>
287
  <?php } else { ?>
288
  <?php
289
- if ($slide->getData ( 'filename' )) {
290
- $imgsrc = Mage::getBaseUrl ( 'media' ) . "responsivebannerslider/thumbnails/" . $slide->getData ( 'filename' );
291
- } else {
292
  if ($slide->getData ( 'hosted_thumb' )) {
293
  $imgsrc = $slide->getHostedThumb ();
294
- } else {
295
- $imgsrc = $slide->getHostedUrl ();
 
 
296
  }
297
  }
298
- ?>
299
  <li><img src="<?php echo $imgsrc; ?>"
300
  alt="<?php echo $slide->getAltText(); ?>" /></li>
301
  <?php } ?>
@@ -311,8 +311,8 @@
311
 
312
  function getGridSize() {
313
 
314
- return (window.innerWidth < 999) ? 4 :
315
- (window.innerWidth < 999) ? 2 : 4;
316
  }
317
 
318
  jQuery(window).load(function(){
153
  webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></li>
154
  <?php } else { ?>
155
  <?php
156
+ if($slide->getData ( 'img_hosting' )) {
157
+ if ($slide->getData ( 'hosted_url' )) {
 
 
 
 
158
  $imgsrc = $slide->getHostedUrl ();
159
  }
160
+ }else{
161
+ if ($slide->getData ( 'filename' )) {
162
+ $imgsrc = Mage::getBaseUrl ( 'media' ) . "responsivebannerslider/" . $slide->getData ( 'filename' );
163
+ }
164
  }
165
  $loading_img = $this->getSkinUrl ( 'css/responsivebannerslider/loading.gif' );
166
  ?>
224
  alt="<?php echo $this->escapeHtml($slide->getTitles()) ?>" /></a></li>
225
  <?php }else{ ?>
226
  <?php
227
+ if($slide->getData ( 'img_hosting' )) {
 
 
228
  if ($slide->getData ( 'hosted_thumb' )) {
229
  $imgsrc = $slide->getHostedThumb ();
230
+ }
231
+ }else{
232
+ if ($slide->getData ( 'filename' )) {
233
+ $imgsrc = Mage::getBaseUrl ( 'media' ) . "responsivebannerslider/thumbnails/" . $slide->getData ( 'filename' );
234
  }
235
  }
236
+ ?>
237
  <li><?php if($slide->getUrl()) {?><a
238
  href="<?php echo $slide->getUrl(); ?>"
239
  title="<?php echo $slide->getUrl(); ?>"
286
  alt="<?php echo $this->escapeHtml($slide->getTitles()) ?>" /></li>
287
  <?php } else { ?>
288
  <?php
289
+ if($slide->getData ( 'img_hosting' )) {
 
 
290
  if ($slide->getData ( 'hosted_thumb' )) {
291
  $imgsrc = $slide->getHostedThumb ();
292
+ }
293
+ }else{
294
+ if ($slide->getData ( 'filename' )) {
295
+ $imgsrc = Mage::getBaseUrl ( 'media' ) . "responsivebannerslider/thumbnails/" . $slide->getData ( 'filename' );
296
  }
297
  }
298
+ ?>
299
  <li><img src="<?php echo $imgsrc; ?>"
300
  alt="<?php echo $slide->getAltText(); ?>" /></li>
301
  <?php } ?>
311
 
312
  function getGridSize() {
313
 
314
+ return (window.innerWidth < 999) ? 3 :
315
+ (window.innerWidth < 999) ? 2 : 3;
316
  }
317
 
318
  jQuery(window).load(function(){
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Responsive_Banner_Slider</name>
4
- <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
@@ -12,9 +12,9 @@ This extension is easy to setup and give many options for settings from admin. Y
12
  </description>
13
  <notes>Capacity Web Solutions - Responsive Banner Slider</notes>
14
  <authors><author><name>Capacity Web Solutions</name><user>capacitywebsolutions</user><email>magento@capacitywebsolutions.com</email></author></authors>
15
- <date>2015-05-29</date>
16
- <time>06:06:23</time>
17
- <contents><target name="mageetc"><dir name="modules"><file name="CapacityWebSolutions_Responsivebannerslider.xml" hash="2a99a1b776e46e0f263fd11bbf3734e6"/></dir></target><target name="magecommunity"><dir name="CapacityWebSolutions"><dir name="Responsivebannerslider"><dir name="Block"><dir name="Adminhtml"><dir name="Slider"><dir name="Edit"><file name="Form.php" hash="c693bcac807af9a09d440eb168eb3fe2"/><dir name="Tab"><file name="Form.php" hash="6663742076a36938f411db58de0514e5"/></dir><file name="Tabs.php" hash="8925bab36ab5c00e08c11550428f2779"/></dir><file name="Edit.php" hash="50a6189710bd2c95fe797dea961e2b25"/><file name="Grid.php" hash="5aacb488667b8992fb2af5d18570d355"/><dir name="Renderer"><file name="Groups.php" hash="64bf193cdbe365b53f740f42171f1264"/></dir></dir><file name="Slider.php" hash="f43c568cf9cdb2ab00cdcc5570be0124"/><dir name="Slidergroup"><dir name="Edit"><file name="Form.php" hash="15e4ceaab37f2fa892538a832697e72d"/><dir name="Tab"><file name="Categories.php" hash="d340ac103065e332355c25db225dce19"/><file name="Code.php" hash="bc6d2bfc008c7dc062d12f0b95d1b1bb"/><file name="Form.php" hash="1e1f0bec054bbe9ddc779a91e7f1d901"/><file name="Pages.php" hash="0334b4b413b08fad246b1e75a1295b02"/><file name="Product.php" hash="ba020e27a3f51a75d1532b4e93b12564"/><file name="Sliders.php" hash="76bad616a4aeb6038a9b93fe85ec9fe8"/></dir><file name="Tabs.php" hash="7d50ea95fc1b3d889a5f7bfaa0b50961"/></dir><file name="Edit.php" hash="53f1d1360409a52f6d145a449acd98c7"/><file name="Grid.php" hash="443805684f17f487242a12e16bd22415"/></dir><file name="Slidergroup.php" hash="991c32858debc3508cb9a3f4a10a23e6"/></dir><dir name="View"><file name="Bottom.php" hash="9789f6620c9b423fa0fd008ca8b891d6"/><file name="Top.php" hash="4e40ef544497f9ecf2a8475416a856eb"/></dir><file name="View.php" hash="4cb60d2f10505e4de132c7ac4a637593"/></dir><dir name="Helper"><file name="Data.php" hash="7ba54649e54da8b57b88806585a7df55"/></dir><dir name="Model"><file name="Categories.php" hash="8cac29d0e10ed8f42a9715ec171fe8a3"/><file name="Category.php" hash="aa800bbb91d4eed0172493aadb6278bb"/><dir name="Config"><file name="Effect.php" hash="49b86e04e38bd1757bf56d18503e1264"/><dir name="Source"><file name="Animationdirection.php" hash="9904f3f77ecc8f5def84b5f0ac147bca"/><file name="Animationtype.php" hash="eb4341a59f0ed657427cc2e847774553"/><file name="Effect.php" hash="365bfe3aaa0fa7e8235bd9131670ab91"/><file name="Navigation.php" hash="83af4ecbf1e4ab33261a9b5974db1d5d"/><file name="Navigationarrow.php" hash="78e6de8297d88504f0de352027076d76"/><file name="Navigationstyle.php" hash="84087644e9b439178d9a5eeb1a217cab"/><file name="Pages.php" hash="025071e0c33ec7fae54255f6309b60b8"/><file name="Paginationposition.php" hash="d672cc31fd6a35fcdae6b8658bde95a1"/><file name="Paginationstyle.php" hash="a8db3db4636afe540f5148bf4a0aab01"/><file name="Position.php" hash="0d221cdb4209f1dd469d2512d6a76e41"/><file name="Status.php" hash="1217aaf60bdb16c6e05236bbfc663b9a"/><file name="Theme.php" hash="50d77ffc3961aa7cab380d1ef13ccf0c"/><file name="Type.php" hash="249d3e740618010a249029a7bb9f2de1"/><file name="Urltarget.php" hash="f94e29c587735a3371ec951de478911c"/><file name="Video.php" hash="3aebf9b4033a31b8e795954909293ba9"/></dir></dir><dir name="Mysql4"><dir name="Categories"><file name="Collection.php" hash="a6f9741b66824a9fa833ade979a3a742"/></dir><file name="Categories.php" hash="af9c86a9f68ff02398e281f5f9ddbd8a"/><dir name="Page"><file name="Collection.php" hash="d5c87f75df5dba2ccb9f4c69a1ae01ca"/></dir><file name="Page.php" hash="6f9edf1be7105da0237dff5f1e64dc4e"/><dir name="Product"><file name="Collection.php" hash="a7205246e7aa75e22ea0d40efdc42595"/></dir><file name="Product.php" hash="6f4fe1a80df501a543efa6ddd044fa32"/><dir name="Responsivebannerslider"><file name="Collection.php" hash="9f2ded0948a1dd2c842e8636a4136c6b"/></dir><file name="Responsivebannerslider.php" hash="79d630dad9ce750cc53e0b5783927671"/><dir name="Slide"><file name="Collection.php" hash="10b7ee679e1c02de23000faf2146c38d"/></dir><file name="Slide.php" hash="63ed667457c4543861d8ae3ddb3784cf"/><dir name="Store"><file name="Collection.php" hash="83a4477b9ea24237b4aa151c223e3610"/></dir><file name="Store.php" hash="dc35d5d57d9aed5adcdd350df8e70468"/></dir><file name="Observer.php" hash="15a4bab058ed736878f0bde325c8049c"/><file name="Page.php" hash="ce06882b913b33fbdd20bb413004e8d1"/><file name="Product.php" hash="619f0b5ae7de3642fec5aa563e470640"/><file name="Responsivebannerslider.php" hash="308eb76b21f2cbf3403e2f9186213ca1"/><file name="Slide.php" hash="444dc63f5a09ed39bf94f3f1a19ccc07"/><file name="Status.php" hash="e06821c830b4e225d31035949ea117f1"/><file name="Store.php" hash="1828b5e27442c34c1b4faaa9121fcf99"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SliderController.php" hash="610eb87cc1168ccc20b70ad83094921f"/><file name="SlidergroupController.php" hash="6b6f52173ca70cdd656c108cf94b1e8f"/></dir><file name="IndexController.php" hash="b9e855e216650c60383de700e844afa7"/></dir><dir name="etc"><file name="config.xml" hash="e314c39795d656235e0638b684cb7aad"/><file name="system.xml" hash="0367eca766a9b9560a07692077dfc50b"/></dir><dir name="sql"><dir name="responsivebannerslider_setup"><file name="mysql4-install-1.0.0.php" hash="a3ff6eea114f0c77c308eab7ea8e6130"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="responsivebannerslider"><file name="slider.phtml" hash="199af5b770709a2697b4a24b6a7f7c2a"/></dir></dir><dir name="layout"><file name="responsivebannerslider.xml" hash="7d68272277e21dcda469e0f324bfae83"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="responsivebannerslider.xml" hash="0fd874a3c971f07fd6dc9c43d7298c74"/></dir><dir name="template"><dir name="responsivebannerslider"><dir name="category"><dir name="edit"><dir name="tab"><file name="categories.phtml" hash="95f4e5af33719a2543c73bc2eaae7395"/><file name="product.phtml" hash="8c289cbb0690fae8ea3819269bb369c1"/></dir></dir></dir><file name="code.phtml" hash="e2f283ad329cbb0be32d4bb10547b4f8"/><file name="group.phtml" hash="d61dc612ed18ad9d463dcce2b21149c2"/><file name="store.phtml" hash="9d96b0194b3a4863b44920fccc1db4d2"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="responsivebannerslider"><file name="froogaloop.js" hash="e743b8d812558184ec3d4cae1038d551"/><file name="jquery.easing.js" hash="7a5ecdcd9a7623fbe340b9ab87e87d74"/><file name="jquery.fitvid.js" hash="c6f6443bff74dd462b30e5445ed551f3"/><file name="jquery.flexslider.js" hash="b9f34e8a6cf9e4a5f07bf17dec695b2d"/><file name="jquery.lazy.js" hash="fc16f364749bfc6613f981e443512d44"/><file name="jquery.min.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/><dir name="jscolor"><file name="Thumbs.db" hash="32fb573f166c0f3a4556474b2be54a05"/><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="1a38f74bda8ecffcc0130ae4c40259ec"/></dir><file name="product-selector.js" hash="18edba645290825072641d0c032b0a0f"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="responsivebannerslider"><file name="Thumbs.db" hash="a1f695472e3ad7ea9a28e3da71c9601c"/><file name="bottom-shadow.png" hash="5f1ff2657b5f90226685492cefa866f6"/><file name="default.css" hash="50332279bee1d28f8ebb72a76dc41ba4"/><dir name="fonts"><file name="cwsarw.eot" hash="41f04937f0acde47c88f749f001bb12f"/><file name="cwsarw.svg" hash="07131191014e36c08d6a67e34d74b709"/><file name="cwsarw.ttf" hash="4006f9d9fa6d69039f9c87bdc9b58c0f"/><file name="cwsarw.woff" hash="a9149ac28397ca3af9949933fb53fb60"/></dir><file name="group-1.css" hash="018a147a4cd5a172b3d87331cf7cade1"/><file name="loading.gif" hash="5d25806dac7cbee5f894b13144783866"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="responsivebannerslider"><file name="cwsarw.eot" hash="41f04937f0acde47c88f749f001bb12f"/><file name="cwsarw.svg" hash="07131191014e36c08d6a67e34d74b709"/><file name="cwsarw.ttf" hash="4006f9d9fa6d69039f9c87bdc9b58c0f"/><file name="cwsarw.woff" hash="a9149ac28397ca3af9949933fb53fb60"/><file name="responsivebannerslider.css" hash="e03584b7abd8cef4f16aab5ff20e809e"/></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.0.0</min><max>5.6.8</max></php></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Responsive_Banner_Slider</name>
4
+ <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
12
  </description>
13
  <notes>Capacity Web Solutions - Responsive Banner Slider</notes>
14
  <authors><author><name>Capacity Web Solutions</name><user>capacitywebsolutions</user><email>magento@capacitywebsolutions.com</email></author></authors>
15
+ <date>2015-06-04</date>
16
+ <time>12:21:33</time>
17
+ <contents><target name="mageetc"><dir name="modules"><file name="CapacityWebSolutions_Responsivebannerslider.xml" hash="2a99a1b776e46e0f263fd11bbf3734e6"/></dir></target><target name="magecommunity"><dir name="CapacityWebSolutions"><dir name="Responsivebannerslider"><dir name="Block"><dir name="Adminhtml"><dir name="Slider"><dir name="Edit"><file name="Form.php" hash="c693bcac807af9a09d440eb168eb3fe2"/><dir name="Tab"><file name="Form.php" hash="6663742076a36938f411db58de0514e5"/></dir><file name="Tabs.php" hash="8925bab36ab5c00e08c11550428f2779"/></dir><file name="Edit.php" hash="50a6189710bd2c95fe797dea961e2b25"/><file name="Grid.php" hash="5aacb488667b8992fb2af5d18570d355"/><dir name="Renderer"><file name="Groups.php" hash="64bf193cdbe365b53f740f42171f1264"/></dir></dir><file name="Slider.php" hash="f43c568cf9cdb2ab00cdcc5570be0124"/><dir name="Slidergroup"><dir name="Edit"><file name="Form.php" hash="15e4ceaab37f2fa892538a832697e72d"/><dir name="Tab"><file name="Categories.php" hash="d340ac103065e332355c25db225dce19"/><file name="Code.php" hash="bc6d2bfc008c7dc062d12f0b95d1b1bb"/><file name="Form.php" hash="1e1f0bec054bbe9ddc779a91e7f1d901"/><file name="Pages.php" hash="0334b4b413b08fad246b1e75a1295b02"/><file name="Product.php" hash="ba020e27a3f51a75d1532b4e93b12564"/><file name="Sliders.php" hash="76bad616a4aeb6038a9b93fe85ec9fe8"/></dir><file name="Tabs.php" hash="7d50ea95fc1b3d889a5f7bfaa0b50961"/></dir><file name="Edit.php" hash="53f1d1360409a52f6d145a449acd98c7"/><file name="Grid.php" hash="443805684f17f487242a12e16bd22415"/></dir><file name="Slidergroup.php" hash="991c32858debc3508cb9a3f4a10a23e6"/></dir><dir name="View"><file name="Bottom.php" hash="9789f6620c9b423fa0fd008ca8b891d6"/><file name="Top.php" hash="4e40ef544497f9ecf2a8475416a856eb"/></dir><file name="View.php" hash="4cb60d2f10505e4de132c7ac4a637593"/></dir><dir name="Helper"><file name="Data.php" hash="7ba54649e54da8b57b88806585a7df55"/></dir><dir name="Model"><file name="Categories.php" hash="8cac29d0e10ed8f42a9715ec171fe8a3"/><file name="Category.php" hash="aa800bbb91d4eed0172493aadb6278bb"/><dir name="Config"><file name="Effect.php" hash="49b86e04e38bd1757bf56d18503e1264"/><dir name="Source"><file name="Animationdirection.php" hash="9904f3f77ecc8f5def84b5f0ac147bca"/><file name="Animationtype.php" hash="eb4341a59f0ed657427cc2e847774553"/><file name="Effect.php" hash="365bfe3aaa0fa7e8235bd9131670ab91"/><file name="Navigation.php" hash="83af4ecbf1e4ab33261a9b5974db1d5d"/><file name="Navigationarrow.php" hash="78e6de8297d88504f0de352027076d76"/><file name="Navigationstyle.php" hash="84087644e9b439178d9a5eeb1a217cab"/><file name="Pages.php" hash="025071e0c33ec7fae54255f6309b60b8"/><file name="Paginationposition.php" hash="d672cc31fd6a35fcdae6b8658bde95a1"/><file name="Paginationstyle.php" hash="a8db3db4636afe540f5148bf4a0aab01"/><file name="Position.php" hash="0d221cdb4209f1dd469d2512d6a76e41"/><file name="Status.php" hash="1217aaf60bdb16c6e05236bbfc663b9a"/><file name="Theme.php" hash="50d77ffc3961aa7cab380d1ef13ccf0c"/><file name="Type.php" hash="249d3e740618010a249029a7bb9f2de1"/><file name="Urltarget.php" hash="f94e29c587735a3371ec951de478911c"/><file name="Video.php" hash="3aebf9b4033a31b8e795954909293ba9"/></dir></dir><dir name="Mysql4"><dir name="Categories"><file name="Collection.php" hash="a6f9741b66824a9fa833ade979a3a742"/></dir><file name="Categories.php" hash="af9c86a9f68ff02398e281f5f9ddbd8a"/><dir name="Page"><file name="Collection.php" hash="d5c87f75df5dba2ccb9f4c69a1ae01ca"/></dir><file name="Page.php" hash="6f9edf1be7105da0237dff5f1e64dc4e"/><dir name="Product"><file name="Collection.php" hash="a7205246e7aa75e22ea0d40efdc42595"/></dir><file name="Product.php" hash="6f4fe1a80df501a543efa6ddd044fa32"/><dir name="Responsivebannerslider"><file name="Collection.php" hash="9f2ded0948a1dd2c842e8636a4136c6b"/></dir><file name="Responsivebannerslider.php" hash="79d630dad9ce750cc53e0b5783927671"/><dir name="Slide"><file name="Collection.php" hash="10b7ee679e1c02de23000faf2146c38d"/></dir><file name="Slide.php" hash="63ed667457c4543861d8ae3ddb3784cf"/><dir name="Store"><file name="Collection.php" hash="83a4477b9ea24237b4aa151c223e3610"/></dir><file name="Store.php" hash="dc35d5d57d9aed5adcdd350df8e70468"/></dir><file name="Observer.php" hash="15a4bab058ed736878f0bde325c8049c"/><file name="Page.php" hash="ce06882b913b33fbdd20bb413004e8d1"/><file name="Product.php" hash="619f0b5ae7de3642fec5aa563e470640"/><file name="Responsivebannerslider.php" hash="308eb76b21f2cbf3403e2f9186213ca1"/><file name="Slide.php" hash="444dc63f5a09ed39bf94f3f1a19ccc07"/><file name="Status.php" hash="e06821c830b4e225d31035949ea117f1"/><file name="Store.php" hash="1828b5e27442c34c1b4faaa9121fcf99"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SliderController.php" hash="610eb87cc1168ccc20b70ad83094921f"/><file name="SlidergroupController.php" hash="c49dc645ce1eee7acd117f1607196e6f"/></dir><file name="IndexController.php" hash="b9e855e216650c60383de700e844afa7"/></dir><dir name="etc"><file name="config.xml" hash="e314c39795d656235e0638b684cb7aad"/><file name="system.xml" hash="0367eca766a9b9560a07692077dfc50b"/></dir><dir name="sql"><dir name="responsivebannerslider_setup"><file name="mysql4-install-1.0.0.php" hash="a3ff6eea114f0c77c308eab7ea8e6130"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="responsivebannerslider"><file name="slider.phtml" hash="d29dd6d3e97149580a04a252a7c90de2"/></dir></dir><dir name="layout"><file name="responsivebannerslider.xml" hash="7d68272277e21dcda469e0f324bfae83"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="responsivebannerslider.xml" hash="0fd874a3c971f07fd6dc9c43d7298c74"/></dir><dir name="template"><dir name="responsivebannerslider"><dir name="category"><dir name="edit"><dir name="tab"><file name="categories.phtml" hash="95f4e5af33719a2543c73bc2eaae7395"/><file name="product.phtml" hash="8c289cbb0690fae8ea3819269bb369c1"/></dir></dir></dir><file name="code.phtml" hash="e2f283ad329cbb0be32d4bb10547b4f8"/><file name="group.phtml" hash="d61dc612ed18ad9d463dcce2b21149c2"/><file name="store.phtml" hash="9d96b0194b3a4863b44920fccc1db4d2"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="responsivebannerslider"><file name="froogaloop.js" hash="e743b8d812558184ec3d4cae1038d551"/><file name="jquery.easing.js" hash="7a5ecdcd9a7623fbe340b9ab87e87d74"/><file name="jquery.fitvid.js" hash="c6f6443bff74dd462b30e5445ed551f3"/><file name="jquery.flexslider.js" hash="b9f34e8a6cf9e4a5f07bf17dec695b2d"/><file name="jquery.lazy.js" hash="fc16f364749bfc6613f981e443512d44"/><file name="jquery.min.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/><dir name="jscolor"><file name="Thumbs.db" hash="32fb573f166c0f3a4556474b2be54a05"/><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="1a38f74bda8ecffcc0130ae4c40259ec"/></dir><file name="product-selector.js" hash="18edba645290825072641d0c032b0a0f"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="responsivebannerslider"><file name="Thumbs.db" hash="f37f36470242a70f0899bbf428653d0a"/><file name="bottom-shadow.png" hash="5f1ff2657b5f90226685492cefa866f6"/><file name="default.css" hash="d88895748b8c70305d1aa1013451e7c0"/><dir name="fonts"><file name="cwsarw.eot" hash="41f04937f0acde47c88f749f001bb12f"/><file name="cwsarw.svg" hash="07131191014e36c08d6a67e34d74b709"/><file name="cwsarw.ttf" hash="4006f9d9fa6d69039f9c87bdc9b58c0f"/><file name="cwsarw.woff" hash="a9149ac28397ca3af9949933fb53fb60"/></dir><file name="loading.gif" hash="5d25806dac7cbee5f894b13144783866"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="responsivebannerslider"><file name="cwsarw.eot" hash="41f04937f0acde47c88f749f001bb12f"/><file name="cwsarw.svg" hash="07131191014e36c08d6a67e34d74b709"/><file name="cwsarw.ttf" hash="4006f9d9fa6d69039f9c87bdc9b58c0f"/><file name="cwsarw.woff" hash="a9149ac28397ca3af9949933fb53fb60"/><file name="responsivebannerslider.css" hash="e03584b7abd8cef4f16aab5ff20e809e"/></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.0.0</min><max>5.6.8</max></php></required></dependencies>
20
  </package>
skin/frontend/base/default/css/responsivebannerslider/Thumbs.db CHANGED
Binary file
skin/frontend/base/default/css/responsivebannerslider/default.css CHANGED
@@ -10,10 +10,10 @@
10
  }
11
 
12
  .cwsSlider * { margin:0; padding:0; box-sizing:border-box; }
13
- .cwsSlider img { max-width:100%; }
14
  .cwsSlider a { text-decoration:none; cursor:pointer; outline:none; }
15
- .cwsSlider ul, .cwsSlider ul li,
16
- .cwsSlider ol, .cwsSlider ol li { list-style:none !important; }
17
  .cwsSlider .slides { zoom:1; }
18
 
19
  /* Clearfix for the .slides element */
10
  }
11
 
12
  .cwsSlider * { margin:0; padding:0; box-sizing:border-box; }
13
+ .cwsSlider img { max-width:100%; display:block; width:100%; }
14
  .cwsSlider a { text-decoration:none; cursor:pointer; outline:none; }
15
+ .std .cwsSlider ul, .std .cwsSlider ul li, .std .cwsSlider ol, .std .cwsSlider ol li,
16
+ .cwsSlider ul, .cwsSlider ul li, .cwsSlider ol, .cwsSlider ol li { list-style:none !important; margin:0; padding:0; }
17
  .cwsSlider .slides { zoom:1; }
18
 
19
  /* Clearfix for the .slides element */
skin/frontend/base/default/css/responsivebannerslider/group-1.css DELETED
@@ -1 +0,0 @@
1
- #bnrSlider-1 { }#bnrSlider-1 { max-width:; }#bnrSlider-1 .sliderdecs { background-color:#333333; opacity:0.9; }#bnrSlider-1 .cws-arw a:before { color:#333333; }#bnrSlider-1 .cws-pager a { background-color:#777777; }#bnrSlider-1 .cws-pager a.cws-active { background-color:#000000; }#bnrSlider-1 .cws-pager.cir-bar { background-color:#; }#bnrSlider-1 .cws-pager.squ-bar { background-color:#; }