-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from wirecard/TPWDCEE-1578
Tpwdcee 1578
- Loading branch information
Showing
4 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"description": "Wirecard Checkout Page extension for Magento 2", | ||
"keywords": ["wirecard", "checkout", "page", "payment", "magento2"], | ||
"homepage": "https://www.wirecard.at", | ||
"version":"1.0.12", | ||
"version":"1.0.13", | ||
"support": { | ||
"email": "[email protected]", | ||
"docs": "https://guides.wirecard.com" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Shop System Plugins - Terms of Use | ||
* | ||
* The plugins offered are provided free of charge by Wirecard AG and are explicitly not part | ||
* of the Wirecard AG range of products and services. | ||
* | ||
* They have been tested and approved for full functionality in the standard configuration | ||
* (status on delivery) of the corresponding shop system. They are under General Public | ||
* License Version 3 (GPLv3) and can be used, developed and passed on to third parties under | ||
* the same terms. | ||
* | ||
* However, Wirecard AG does not provide any guarantee or accept any liability for any errors | ||
* occurring when used in an enhanced, customized shop system configuration. | ||
* | ||
* Operation in an enhanced, customized configuration is at your own risk and requires a | ||
* comprehensive test phase by the user of the plugin. | ||
* | ||
* Customers use the plugins at their own risk. Wirecard AG does not guarantee their full | ||
* functionality neither does Wirecard AG assume liability for any disadvantages related to | ||
* the use of the plugins. Additionally, Wirecard AG does not guarantee the full functionality | ||
* for customized shop systems or installed plugins of other vendors of plugins within the same | ||
* shop system. | ||
* | ||
* Customers are responsible for testing the plugin's functionality before starting productive | ||
* operation. | ||
* | ||
* By installing the plugin into the shop system the customer agrees to these terms of use. | ||
* Please do not use the plugin if you do not agree to these terms of use! | ||
*/ | ||
|
||
require([ | ||
'Magento_Customer/js/customer-data' | ||
], function (customerData) { | ||
var sections = ['cart']; | ||
customerData.invalidate(sections); | ||
}); |