Version Notes
Set content request to GET rather than POST
Download this release
Release Info
Developer | Hussey Coding |
Extension | HusseyCoding_InfiniteScroll |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
app/code/community/HusseyCoding/InfiniteScroll/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<HusseyCoding_InfiniteScroll>
|
5 |
-
<version>1.0.
|
6 |
</HusseyCoding_InfiniteScroll>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<HusseyCoding_InfiniteScroll>
|
5 |
+
<version>1.0.1</version>
|
6 |
</HusseyCoding_InfiniteScroll>
|
7 |
</modules>
|
8 |
<global>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>HusseyCoding_InfiniteScroll</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Adds SEO friendly infinite scroll functionality to category pages.</summary>
|
10 |
<description>Adds infinite scroll functionality to category pages making use of _escaped_fragment_ functionality to remain SEO friendly. New category products are loaded as you scroll towards the bottom of the page.</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>Hussey Coding</name><user>husseycoding</user><email>info@husseycoding.co.uk</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="HusseyCoding"><dir name="InfiniteScroll"><dir name="Block"><file name="Init.php" hash="7db4e6f0e7db8f39428891b33492c482"/></dir><dir name="etc"><file name="adminhtml.xml" hash="15ca3c797660ceec34d6834487111db8"/><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>HusseyCoding_InfiniteScroll</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Adds SEO friendly infinite scroll functionality to category pages.</summary>
|
10 |
<description>Adds infinite scroll functionality to category pages making use of _escaped_fragment_ functionality to remain SEO friendly. New category products are loaded as you scroll towards the bottom of the page.</description>
|
11 |
+
<notes>Set content request to GET rather than POST</notes>
|
12 |
<authors><author><name>Hussey Coding</name><user>husseycoding</user><email>info@husseycoding.co.uk</email></author></authors>
|
13 |
+
<date>2015-03-25</date>
|
14 |
+
<time>17:07:16</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="HusseyCoding"><dir name="InfiniteScroll"><dir name="Block"><file name="Init.php" hash="7db4e6f0e7db8f39428891b33492c482"/></dir><dir name="etc"><file name="adminhtml.xml" hash="15ca3c797660ceec34d6834487111db8"/><file name="config.xml" hash="0ef509f290baa4d66b51b01d8a8f1335"/><file name="system.xml" hash="a0b0b23c90acf3dec7a120e953f02fba"/></dir><dir name="Helper"><file name="Data.php" hash="b7fbbed1273ed20236f46f637e84ff62"/></dir><dir name="Model"><file name="Observer.php" hash="058febf54d511599a776e66799973af5"/></dir></dir><dir name="Common"><dir name="etc"><file name="system.xml" hash="6c9ba9f227b9adfc9abf97f17b46fdbf"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="HusseyCoding_InfiniteScroll.xml" hash="5609ca99cc8904346e9a2b94d1a9ef21"/><file name="HusseyCoding_Common.xml" hash="31e82d3d9b3179c2fa9e002f9669da47"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="infinitescroll.xml" hash="ea902de6a641b72d9b02a8282de62c79"/></dir><dir name="template"><dir name="infinitescroll"><file name="init.phtml" hash="68c11c9c456d4fecbc6dea2917f6e2c6"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><file name="infinitescroll.js" hash="cbfb1417c2d42e35a112f9c8ffdae28d"/></dir><dir name="css"><file name="infinitescroll.css" hash="1ef7cf72905d03ea47d2201878d53970"/></dir><dir name="images"><file name="infinitescroll-loading.gif" hash="e01916be17aa4b1b73a93bb7022f22e4"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
skin/frontend/base/default/js/infinitescroll.js
CHANGED
@@ -41,6 +41,7 @@ var infinitescroll = Class.create({
|
|
41 |
url += "?p=" + this.nextpage;
|
42 |
}
|
43 |
new Ajax.Request(url, {
|
|
|
44 |
onSuccess: function(response) {
|
45 |
this.nextpage++;
|
46 |
$("infinitescroll-loading").remove();
|
41 |
url += "?p=" + this.nextpage;
|
42 |
}
|
43 |
new Ajax.Request(url, {
|
44 |
+
method:'get',
|
45 |
onSuccess: function(response) {
|
46 |
this.nextpage++;
|
47 |
$("infinitescroll-loading").remove();
|