summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-11-30 23:07:12 -0500
committerJules Laplace <jules@okfoc.us>2015-11-30 23:07:12 -0500
commitef14c875d7056f90be606ebf1f389c112b947f81 (patch)
tree0a0fa9f13f32c5fc2b5afdfaaea48c6aa3bd35f4 /StoneIsland/www/js/lib
parent0381ab43b7e110a5c3950ca9f8bbe4007963c907 (diff)
canadian country code
Diffstat (limited to 'StoneIsland/www/js/lib')
-rw-r--r--StoneIsland/www/js/lib/cart/CartShipping.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/StoneIsland/www/js/lib/cart/CartShipping.js b/StoneIsland/www/js/lib/cart/CartShipping.js
index 1a9653e1..9b8205c1 100644
--- a/StoneIsland/www/js/lib/cart/CartShipping.js
+++ b/StoneIsland/www/js/lib/cart/CartShipping.js
@@ -101,7 +101,7 @@ var CartShipping = FormView.extend({
shipping_info.City = address_data.City
shipping_info.Province = address_data.Province
shipping_info.Region = address_data.Province
- shipping_info.CountryCode = "US"
+ shipping_info.CountryCode = CANADIAN_LOOKUP[ address_data.Province ] ? "CA" : "US"
return shipping_info
},