Sha256: dfa47c73fb5e6f7e564f09f4df767ff06aa92338eb172f9721b76b3504064af0
Contents?: true
Size: 1.86 KB
Versions: 2
Compression:
Stored size: 1.86 KB
Contents
function SpreeQuickCart() { var that = this; this.initializeQuickCartForm = function() { $(".quick-add-to-cart-form").find("form").submit(function() { that.current_order_path = $(this).closest(".quick-add-to-cart-form").find('.current-order-path').text(); Spree.ajax({ url: $(this).attr("action"), type: "POST", data: $(this).serialize(), success: function(data, textStatus, jqXHR) { that.replaceCartInformation(); }, error: function(data, textStatus, jqXHR) { that.showFlashMessage('There was a problem adding the item to the cart. Please reload the page and try again.', false); } }); return false; }); }; this.showFlashMessage = function(message, success) { var messageClass; if (success == true){ messageClass = 'success'} else { messageClass = 'error' }; $('#content').prepend("<div class='flash " + messageClass + "'>" + message + "</div>"); timeoutID = window.setTimeout(function(){ $('#content').find(".flash.success").remove(); }, 3000); }; this.replaceCartInformation = function() { Spree.ajax({ url: that.current_order_path, type: "GET", cache: false, dataType: 'json', success: function(data, textStatus, jqXHR) { total = data.display_total; items_count = data.total_quantity; $('#link-to-cart .cart-info').html("Cart: (" + items_count + ") <span class='amount'>" + total + "</span>") that.showFlashMessage('Item added to the cart successfully.', true); }, error: function(data, textStatus, jqXHR) { that.showFlashMessage('There was a problem adding the item to the cart. Please reload the page and try again.', false); } }); }; } $(document).ready(function() { var quickCart = new SpreeQuickCart(); quickCart.initializeQuickCartForm(); });
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_quick_cart-2.1.4 | app/assets/javascripts/store/quick_cart.js |
spree_quick_cart-2.1.3 | app/assets/javascripts/store/quick_cart.js |