Skip to content

Commit

Permalink
Merge pull request #6 from FastWhiteCat/bugfix/add_to_cart_from_recen…
Browse files Browse the repository at this point in the history
…tly_ordered_items

Fixed adding to cart from recently ordered items
  • Loading branch information
fwc-mb authored Feb 17, 2020
2 parents 7237ab7 + bfc3018 commit b856d63
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,4 @@ Installing via a composer (NOTE: These steps are only necessary when installing
##### 1.0.3 - Fixed observer
##### 1.0.4 - Fixed PHP version in composer require dependencies
##### 1.0.5 - Fixed adding products from wish list
##### 1.0.6 - Fixed adding products from recently ordered items
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fastwhitecat/sarehub",
"description": "SAREhub integration for Magento2",
"type": "magento2-module",
"version": "1.0.5",
"version": "1.0.6",
"license": [
"OSL-3.0"
],
Expand Down
5 changes: 3 additions & 2 deletions view/frontend/templates/require.js.phtml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<script type="text/javascript">
var BASE_URL = '<?php echo $block->escapeUrl($block->getBaseUrl()); ?>';
var require = {
"baseUrl": "<?php /* @escapeNotVerified */ echo $block->getViewFileUrl('/') ?>",
"BASE_URL": "<?php /* @escapeNotVerified */ echo $block->getViewFileUrl('/') ?>",
"baseUrl": "<?php echo $block->escapeUrl($block->getViewFileUrl('/')) ?>"
};

var sareX_params = [];
</script>

Expand Down

0 comments on commit b856d63

Please sign in to comment.