├── .gitignore ├── LICENSE ├── README.md ├── app ├── code │ └── community │ │ └── Strategery │ │ └── Infinitescroll │ │ ├── Block │ │ └── Init.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Admin │ │ │ └── Feed.php │ │ └── Observer.php │ │ └── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml ├── design │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── strategery-infinitescroll.xml │ │ └── template │ │ └── strategery │ │ └── infinitescroll │ │ ├── init.phtml │ │ └── swatches.phtml └── etc │ └── modules │ └── Strategery_Infinitescroll.xml ├── composer.json ├── js └── jquery │ ├── infinitescroll │ ├── jquery-ias.min.js │ ├── jquery.easing-1.3.pack.js │ └── jquery.ui.totop.min.js │ └── jquery.1.10.2.min.js ├── modman └── skin └── frontend └── base └── default └── js └── infinitescroll └── ias_config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/Block/Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/Block/Init.php -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/Model/Admin/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/Model/Admin/Feed.php -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Strategery/Infinitescroll/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/code/community/Strategery/Infinitescroll/etc/system.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/strategery-infinitescroll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/design/frontend/base/default/layout/strategery-infinitescroll.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/strategery/infinitescroll/init.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/design/frontend/base/default/template/strategery/infinitescroll/init.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/strategery/infinitescroll/swatches.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/design/frontend/base/default/template/strategery/infinitescroll/swatches.phtml -------------------------------------------------------------------------------- /app/etc/modules/Strategery_Infinitescroll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/app/etc/modules/Strategery_Infinitescroll.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/composer.json -------------------------------------------------------------------------------- /js/jquery/infinitescroll/jquery-ias.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/js/jquery/infinitescroll/jquery-ias.min.js -------------------------------------------------------------------------------- /js/jquery/infinitescroll/jquery.easing-1.3.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/js/jquery/infinitescroll/jquery.easing-1.3.pack.js -------------------------------------------------------------------------------- /js/jquery/infinitescroll/jquery.ui.totop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/js/jquery/infinitescroll/jquery.ui.totop.min.js -------------------------------------------------------------------------------- /js/jquery/jquery.1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/js/jquery/jquery.1.10.2.min.js -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/modman -------------------------------------------------------------------------------- /skin/frontend/base/default/js/infinitescroll/ias_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strategery-Inc/Magento-InfiniteScroll/HEAD/skin/frontend/base/default/js/infinitescroll/ias_config.js --------------------------------------------------------------------------------