our commission is now shown on cart page

This commit is contained in:
Senad Uka
2015-06-14 07:11:46 +02:00
parent ce733c8cd8
commit 4dfc2ffbd1
8 changed files with 46 additions and 10 deletions

View File

@@ -7,5 +7,9 @@ module.exports = {
var amount = parseFloat(amount_s);
return ( amount.toFixed(2) + " KM" )
},
FormatPercentage: function(amount_s) {
var amount = parseFloat(amount_s);
return ( amount.toFixed(2) + "%" )
},
MaxNumberOfItemsToBeAdded: 1000
};