Sha256: 57f5e749e8c998b1033e171c862c49cd5f33684cb36097ad53f17f4862db7b87

Contents?: true

Size: 1004 Bytes

Versions: 9

Compression:

Stored size: 1004 Bytes

Contents

<style>
	.quantity_box { width: 300px; height: 300px; }
</style>

<div class="quantity_box">
<p id="message">Sorry, your specified quantity exceeds what we have in stock. Your cart will be updated to reflect our current stock.</p>
<div id="update_btn" style="display:none;"><button id="update_cart">Return to Checkout</button></div>
<p class="loading" id="updating" style="display:none;">Updating cart...</p>
</div>

<%= content_for :caboose_js do %>
<%= javascript_include_tag 'cart' %>
<script type='text/javascript'>

var modal = false;
$(window).load(function() {
    modal = new CabooseModal(300, 300);
    update_quantities();
});

function update_quantities() {
   $("#updating").show(); 
    $.ajax({
    url: '/checkout/update_quantities',
    success: function(order) {
       $("#updating").hide(); 
       $("#update_btn").show(); 
    }
  });
}

function close_colorbox() {
	parent.jQuery.fn.colorbox.close();
}

$("#update_btn").click(function() { close_colorbox(); });

</script>
<% end %>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
caboose-store-0.0.10 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.9 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.8 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.7 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.6 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.5 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.4 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.3 app/views/caboose_store/checkout/quantity_box.html.erb
caboose-store-0.0.2 app/views/caboose_store/checkout/quantity_box.html.erb