diff options
Diffstat (limited to 'StoneIsland/www/js/lib/cart')
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartBilling.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartShipping.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartSummary.js | 11 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartView.js | 11 |
4 files changed, 44 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/cart/CartBilling.js b/StoneIsland/www/js/lib/cart/CartBilling.js new file mode 100644 index 00000000..f3c9cbe2 --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartBilling.js @@ -0,0 +1,11 @@ +var CartBilling = View.extend({ + + el: "#billing", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartShipping.js b/StoneIsland/www/js/lib/cart/CartShipping.js new file mode 100644 index 00000000..beaf6bd2 --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartShipping.js @@ -0,0 +1,11 @@ +var CartShipping = View.extend({ + + el: "#shipping", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartSummary.js b/StoneIsland/www/js/lib/cart/CartSummary.js new file mode 100644 index 00000000..37400dd0 --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartSummary.js @@ -0,0 +1,11 @@ +var CartSummary = View.extend({ + + el: "#summary", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file diff --git a/StoneIsland/www/js/lib/cart/CartView.js b/StoneIsland/www/js/lib/cart/CartView.js new file mode 100644 index 00000000..fa92fefe --- /dev/null +++ b/StoneIsland/www/js/lib/cart/CartView.js @@ -0,0 +1,11 @@ +var CartView = View.extend({ + + el: "#cart", + + events: { + }, + + initialize: function(){ + }, + +})
\ No newline at end of file |
