Subversion Repositories SmartDukaan

Rev

Rev 2714 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2674 vikas 1
$(function() {
2
	$("a.show-order-details").live('click', function() {
3
		var orderId = $(this).attr('orderId');
4
		var userId = $(this).attr('userId');
5
		loadOrderInfo("bottom-infopane", userId, orderId);
6
	});
7
 
8
	$("a.show-user-details").live('click', function() {
9
		var userId = $(this).attr('userId');
10
		loadUserPane("infopane", userId);
11
	});
12
 
13
	$("a.show-orders").live('click', function() {
14
		var userId = $(this).attr('userId');
15
		loadOrderPane("infopane", userId, 0);
16
	});
17
});