Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Jun 4, 2019
1 parent ea7915e commit 973dc9b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thesuitdepot/core"
,"version": "0.0.1"
,"version": "0.0.2"
,"description": "A custom module for thesuitdepot.com"
,"type": "magento2-module"
,"homepage": "https://github.com/thesuitdepot/core"
Expand Down
4 changes: 4 additions & 0 deletions view/frontend/requirejs-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// 2019-06-04
var config = {config: {mixins: {
'Magestore_Webpos/js/model/checkout/cart/customer/address': {'TheSuitDepot_Core/address': true}
}}};
10 changes: 10 additions & 0 deletions view/frontend/web/address.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
define([
'df-lodash', 'jquery', 'mage/utils/wrapper'
], function(_, $, w) {'use strict';
return function(sb) {
$.extend(sb, {
initialize: w.wrap(sb.initialize, function(_super, d) {
return _super();
})
});
return sb;};});

0 comments on commit 973dc9b

Please sign in to comment.