Subversion Repositories SmartDukaan

Rev

Rev 21001 | Rev 21082 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21001 Rev 21002
Line 22... Line 22...
22
		var cart_details = localStorage.getItem('cart_details');
22
		var cart_details = localStorage.getItem('cart_details');
23
		if(cart_details!=undefined){
23
		if(cart_details!=undefined){
24
			loadCartDetails();
24
			loadCartDetails();
25
		}
25
		}
26
		if(estimateString=="Can't ship here"){
26
		if(estimateString=="Can't ship here"){
-
 
27
			$('button.checkoutbtn').prop( "disabled", true);
27
			$('div.cartdetailscard').find('div, input, textarea, button, select').each(function () {
28
			$('div.cartdetailscard').find('div, input, textarea, button, select').each(function () {
28
					$(this).prop('disabled', true);
29
					$(this).prop('disabled', true);
29
			});
30
			});
30
		}
31
		}
31
	}
32
	}