summaryrefslogtreecommitdiff
path: root/StoneIsland/www
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-11-09 18:20:16 -0500
committerJules Laplace <jules@okfoc.us>2015-11-09 18:21:28 -0500
commitf4f94bedc9027e630c1277d15e414db686a948bd (patch)
tree9c2b947fb0bcdcb7eeff9b7e5889e3b13412fd79 /StoneIsland/www
parentead9d27ebc580ce428c991cbbd3ad505865ffd63 (diff)
stub cart confirm
Diffstat (limited to 'StoneIsland/www')
-rw-r--r--StoneIsland/www/index.html12
-rw-r--r--StoneIsland/www/js/lib/cart/CartConfirm.js11
-rw-r--r--StoneIsland/www/js/lib/cart/CartThanks.js11
-rw-r--r--StoneIsland/www/js/lib/cart/CartView.js1
4 files changed, 35 insertions, 0 deletions
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html
index f56367ae..77a47147 100644
--- a/StoneIsland/www/index.html
+++ b/StoneIsland/www/index.html
@@ -350,6 +350,17 @@
<div id="cart_payment">
</div>
+
+ <div id="cart_confirm">
+ <h1>CONFIRM</h1>
+ </div>
+
+ <div id="cart_thanks">
+ <b>GRAZIE</b>
+ <p>
+ Please check your inbox for your confirmation email.
+ </p>
+ </div>
</div>
@@ -448,6 +459,7 @@
<script src="js/lib/cart/CartPayment.js"></script>
<script src="js/lib/cart/CartShipping.js"></script>
<script src="js/lib/cart/CartSummary.js"></script>
+<script src="js/lib/cart/CartConfirm.js"></script>
<script src="js/lib/nav/IntroView.js"></script>
<script src="js/lib/nav/CurtainView.js"></script>
diff --git a/StoneIsland/www/js/lib/cart/CartConfirm.js b/StoneIsland/www/js/lib/cart/CartConfirm.js
new file mode 100644
index 00000000..cf01a67e
--- /dev/null
+++ b/StoneIsland/www/js/lib/cart/CartConfirm.js
@@ -0,0 +1,11 @@
+var CartConfirm = View.extend({
+
+ el: "#cart_confirm",
+
+ events: {
+ },
+
+ initialize: function(){
+ },
+
+}) \ No newline at end of file
diff --git a/StoneIsland/www/js/lib/cart/CartThanks.js b/StoneIsland/www/js/lib/cart/CartThanks.js
new file mode 100644
index 00000000..e4dff0a3
--- /dev/null
+++ b/StoneIsland/www/js/lib/cart/CartThanks.js
@@ -0,0 +1,11 @@
+var CartThanks = View.extend({
+
+ el: "#cart_thanks",
+
+ 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
index 5918048c..0292068d 100644
--- a/StoneIsland/www/js/lib/cart/CartView.js
+++ b/StoneIsland/www/js/lib/cart/CartView.js
@@ -9,6 +9,7 @@ var CartView = View.extend({
this.summary = new CartSummary ()
this.payment = new CartPayment ()
this.shipping = new CartShipping ()
+ this.confirm = new CartConfirm ()
},
show: function(){