├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .travis.yml ├── Block └── FloatingBuyButton.php ├── CHANGELOG.md ├── Helper └── Data.php ├── LICENSE.txt ├── Model └── Config │ └── Source │ └── ButtonPosition.php ├── README.md ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ └── system.xml ├── config.xml └── module.xml ├── i18n └── pt_BR.csv ├── registration.php └── view └── frontend ├── layout └── catalog_product_view.xml ├── templates └── content.phtml └── web ├── css └── source │ └── _module.less └── js └── view └── floating-buy-button.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/.travis.yml -------------------------------------------------------------------------------- /Block/FloatingBuyButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/Block/FloatingBuyButton.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Model/Config/Source/ButtonPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/Model/Config/Source/ButtonPosition.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/etc/module.xml -------------------------------------------------------------------------------- /i18n/pt_BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/i18n/pt_BR.csv -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/templates/content.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/view/frontend/templates/content.phtml -------------------------------------------------------------------------------- /view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/view/frontend/web/css/source/_module.less -------------------------------------------------------------------------------- /view/frontend/web/js/view/floating-buy-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williankeller/magento2-floating-buy-button/HEAD/view/frontend/web/js/view/floating-buy-button.js --------------------------------------------------------------------------------