Subversion Repositories SmartDukaan

Rev

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

Rev 21090 Rev 21092
Line 10... Line 10...
10
	$(".edit-user").live('click', function() {
10
	$(".edit-user").live('click', function() {
11
		var userId = $(this).attr('userId');
11
		var userId = $(this).attr('userId');
12
		loadUserForm("page-content-wrapper", userId);
12
		loadUserForm("page-content-wrapper", userId);
13
	});
13
	});
14
	
14
	
-
 
15
	$(".my-profile").live('click', function() {
-
 
16
		loadMyProfile("page-content-wrapper");
-
 
17
	});
-
 
18
	
15
	$(".add-l3-user").live('click', function() {
19
	$(".add-l3-user").live('click', function() {
16
		var referrerEmail = $(this).attr('referrerEmail');
20
		var referrerEmail = $(this).attr('referrerEmail');
17
		loadNewUserForm("page-content-wrapper", referrerEmail);
21
		loadNewUserForm("page-content-wrapper", referrerEmail);
18
	});
22
	});
19
	
23