Infinitescroll - Version 2.0.1

Version Notes

Installation:
1.Extract and copy the contents of the 'infinitescoll' folder directly into your site's webroot.
2.Refresh your Magento cache.
3.Scroll to infinity and beyond!

Configuration:
If you have a different theme other than the default, you will need to configure the plugin by going to System -> Configuration -> Catalog -> Infinite Scroll.

Download this release

Release Info

Developer Damian A. Pastorini
Extension Infinitescroll
Version 2.0.1
Comparing to
See all releases


Code changes from version 2.0.0 to 2.0.1

app/design/frontend/default/default/template/strategery/infinitescroll/js.phtml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * InfiniteScroll - Magento Integration
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0),
8
+ * available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ *
11
+ * @category Strategery
12
+ * @package Strategery_Infinitescroll
13
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
14
+ * @copyright Copyright (c) 2011 Strategery Inc. (http://usestrategery.com)
15
+ *
16
+ * @author Gabriel Somoza (me@gabrielsomoza.com)
17
+ * @link http://gabrielsomoza.com/
18
+ */
19
+ $helper = $this->helper('infinitescroll'); ?>
20
+ jQuery(document).ready(function ($) {
21
+ $('<?php echo $helper->getConfigData('selectors/content') ?>').infinitescroll({
22
+ <?php echo $helper->getJsConfig(); ?>
23
+ });
24
+ });
app/design/frontend/default/default/template/strategery/infinitescroll/toolbar.phtml ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * InfiniteScroll - Magento Integration
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0),
8
+ * available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ *
11
+ * @category Strategery
12
+ * @package Strategery_Infinitescroll
13
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
14
+ * @copyright Copyright (c) 2011 Strategery Inc. (http://usestrategery.com)
15
+ *
16
+ * @author Gabriel Somoza (me@gabrielsomoza.com)
17
+ * @link http://gabrielsomoza.com/
18
+ */
19
+ ?>
20
+ <?php
21
+ if($this->getCollection()->getSize()): ?>
22
+ <div class="toolbar" style="display:none;">
23
+ <?php echo $this->getPagerHtml() ?>
24
+ </div>
25
+ <?php endif ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Infinitescroll</name>
4
- <version>2.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
7
  <channel>community</channel>
@@ -16,10 +16,10 @@
16
  Configuration:&#xD;
17
  If you have a different theme other than the default, you will need to configure the plugin by going to System -&gt; Configuration -&gt; Catalog -&gt; Infinite Scroll. &#xD;
18
  </notes>
19
- <authors><author><name>Damian A. Pastorini</name><user>dap_strategery</user><email>damian.pastorini@usestrategery.com</email></author></authors>
20
  <date>2011-12-12</date>
21
- <time>12:10:48</time>
22
- <contents><target name="mageetc"><dir name="modules"><file name="Strategery_Infinitescroll.xml" hash="b636a1ca12a341604a2d3e9eae1a0528"/></dir></target><target name="magecommunity"><dir name="Strategery"><dir name="Infinitescroll"><dir name="Helper"><file name="Data.php" hash="920fe0e10564aff5dd65ff798510d41c"/></dir><dir name="controllers"><file name="JsController.php" hash="e10ccebf4aa7ac07781067fa2d340b71"/></dir><dir name="etc"><file name="config.xml" hash="c217a064cd2355f4fedf20b6a3b7ae5c"/><file name="system.xml" hash="b5495a739a0083ebaaf82df4113f08f2"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="strategery-infinitescroll.xml" hash="af1be01e4ceabc656ebcf129aa572e71"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="jquery"><dir name="infinitescroll"><dir name="behaviors"><file name="infinitescroll-magento.js" hash="e475aede63bdedc73e8f43adbf222d96"/></dir><file name="jquery.infinitescroll.js" hash="5b8cbfdc6fe72d8ceb3f1ae818b3a0a0"/><file name="jquery.infinitescroll.min.js" hash="ed1c937e8aa697d86096e94d5869fa59"/></dir><file name="jquery.latest.min.js" hash="7ffe78e450bedfa8878241c3abc5edba"/></dir></dir></target></contents>
23
  <compatible/>
24
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
25
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Infinitescroll</name>
4
+ <version>2.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
7
  <channel>community</channel>
16
  Configuration:&#xD;
17
  If you have a different theme other than the default, you will need to configure the plugin by going to System -&gt; Configuration -&gt; Catalog -&gt; Infinite Scroll. &#xD;
18
  </notes>
19
+ <authors><author><name>Damian A. Pastorini</name><user>strategery</user><email>contact@usestrategery.com</email></author></authors>
20
  <date>2011-12-12</date>
21
+ <time>12:38:07</time>
22
+ <contents><target name="mageetc"><dir name="modules"><file name="Strategery_Infinitescroll.xml" hash="b636a1ca12a341604a2d3e9eae1a0528"/></dir></target><target name="magecommunity"><dir name="Strategery"><dir name="Infinitescroll"><dir name="Helper"><file name="Data.php" hash="920fe0e10564aff5dd65ff798510d41c"/></dir><dir name="controllers"><file name="JsController.php" hash="e10ccebf4aa7ac07781067fa2d340b71"/></dir><dir name="etc"><file name="config.xml" hash="c217a064cd2355f4fedf20b6a3b7ae5c"/><file name="system.xml" hash="b5495a739a0083ebaaf82df4113f08f2"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="strategery-infinitescroll.xml" hash="af1be01e4ceabc656ebcf129aa572e71"/></dir><dir name="template"><dir name="strategery"><dir name="infinitescroll"><file name="js.phtml" hash="904d76712c25806ca6dda77b32eeb586"/><file name="toolbar.phtml" hash="8e8eb9c4a35f79a20f933601a2822e07"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="jquery"><dir name="infinitescroll"><dir name="behaviors"><file name="infinitescroll-magento.js" hash="e475aede63bdedc73e8f43adbf222d96"/></dir><file name="jquery.infinitescroll.js" hash="5b8cbfdc6fe72d8ceb3f1ae818b3a0a0"/><file name="jquery.infinitescroll.min.js" hash="ed1c937e8aa697d86096e94d5869fa59"/></dir><file name="jquery.latest.min.js" hash="7ffe78e450bedfa8878241c3abc5edba"/></dir></dir></target></contents>
23
  <compatible/>
24
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
25
  </package>