Subversion Repositories SmartDukaan

Rev

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

Rev 21020 Rev 21021
Line 1... Line 1...
1
<script type="text/javascript">
1
<script type="text/javascript">
2
$(function(){
2
$(function(){
3
	$('a.mk_activate').on('click', function(){
3
	$('a.mk_activate').on('click', function(){
4
		this.style.pointerEvents = 'none';
4
		this.style.pointerEvents = 'none';
-
 
5
		clickedUserId = $(this).closest('th').find('input').val();
5
		window.location="/admin/retailers/activate/" + $(this).data("retailerid") + "/" + clickedUserId;
6
		window.location="/admin/retailers/activate/" + $(this).data("retailerid") + "/" + clickedUserId;
6
		this.style.pointerEvents = 'auto';
7
		this.style.pointerEvents = 'auto';
7
		return false;
8
		return false;
8
	});
9
	});
9
});
10
});