Subversion Repositories SmartDukaan

Rev

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

Rev 2714 Rev 2830
Line 19... Line 19...
19
		var userId = $(this).attr('userId');
19
		var userId = $(this).attr('userId');
20
		var cartId = $(this).attr('cartId');
20
		var cartId = $(this).attr('cartId');
21
		loadCartPane("infopane", userId, cartId);
21
		loadCartPane("infopane", userId, cartId);
22
	});
22
	});
23
	
23
	
-
 
24
	$("a.show-user-communication").live('click', function() {
-
 
25
		var userId = $(this).attr('userId');
-
 
26
		loadUserCommunicationPane("infopane", userId);
-
 
27
	});
-
 
28
	
24
	$("a.show-line-details").live('click', function() {
29
	$("a.show-line-details").live('click', function() {
25
		var userId = $(this).attr('userId');
30
		var userId = $(this).attr('userId');
26
		var itemId = $(this).attr('itemId');
31
		var itemId = $(this).attr('itemId');
27
		loadLineInfo("bottom-infopane", userId, itemId);
32
		loadLineInfo("bottom-infopane", userId, itemId);
28
	});
33
	});
-
 
34
	
-
 
35
	$("a.show-comm-details").live('click', function() {
-
 
36
		var userId = $(this).attr('userId');
-
 
37
		var commId = $(this).attr('commId');
-
 
38
		loadCommunicationInfo("bottom-infopane", userId, commId);
-
 
39
	});
29
});
40
});
30
41