Subversion Repositories SmartDukaan

Rev

Rev 27754 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27754 Rev 27755
Line 1... Line 1...
1
$(function() {
1
$(function() {
2
	$(document).on('click', ".product-detail", function() {
2
	$(document).on('click', ".product-detail", function() {
3
		loadItems("main-content");
3
		loadItems("main-content");
4
	});
4
	});
5
	$(".product-info").live(
5
	$(document).on('click', ".product-info",
6
			'click',
-
 
7
			function() {
6
			function() {
8
				console.log(itemCatalogId);
7
				console.log(itemCatalogId);
9
				doAjaxRequestHandler(context + "/getProductInfo?catalogId="
8
				doAjaxRequestHandler(context + "/getProductInfo?catalogId="
10
						+ itemCatalogId, "GET", function(response) {
9
						+ itemCatalogId, "GET", function(response) {
11
					$('.product-info-container').html(response);
10
					$('.product-info-container').html(response);