// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
// js inside blog page
// shopping cart
frappe.provide("shopping_cart");
$.extend(shopping_cart, {
	show_error: function(title, text) {
		$("#cart-container").html('
' +
			title + '
' + text + '
\
			
\
				
\
					
' +
					(shipping_selector || '
%(description)s
') +
					'
\
				
\
			
\
			
\
				
%(formatted_tax_amount)s
\
			
\
		
");
					}
					$("#cart-error")
						.empty()
						.html(msg || frappe._("Something went wrong!"))
						.toggle(true);
				} else {
					window.location.href = "/orders/" + encodeURIComponent(r.message);
				}
			}
		});
	}
});
$(document).ready(function() {
	shopping_cart.bind_events();
});