Subversion Repositories SmartDukaan

Rev

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

Rev 2674 Rev 2714
Line 12... Line 12...
12
	
12
	
13
	$("a.show-orders").live('click', function() {
13
	$("a.show-orders").live('click', function() {
14
		var userId = $(this).attr('userId');
14
		var userId = $(this).attr('userId');
15
		loadOrderPane("infopane", userId, 0);
15
		loadOrderPane("infopane", userId, 0);
16
	});
16
	});
-
 
17
	
-
 
18
	$("a.show-cart").live('click', function() {
-
 
19
		var userId = $(this).attr('userId');
-
 
20
		var cartId = $(this).attr('cartId');
-
 
21
		loadCartPane("infopane", userId, cartId);
-
 
22
	});
-
 
23
	
-
 
24
	$("a.show-line-details").live('click', function() {
-
 
25
		var userId = $(this).attr('userId');
-
 
26
		var itemId = $(this).attr('itemId');
-
 
27
		loadLineInfo("bottom-infopane", userId, itemId);
-
 
28
	});
17
});
29
});
18
30