Subversion Repositories SmartDukaan

Rev

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

Rev 24089 Rev 24093
Line 86... Line 86...
86
	 
86
	 
87
	 $(".approved").live('click',
87
	 $(".approved").live('click',
88
	 function(){
88
	 function(){
89
	 if (confirm("Are you sure you want to Approve the request") == true) {
89
	 if (confirm("Are you sure you want to Approve the request") == true) {
90
	 id=$(this).data('id'); 
90
	 id=$(this).data('id'); 
91
	 walletRequestid=$(this).data('requestid');
-
 
92
	 walletRequestApprove(id,walletRequestid);
91
	 walletRequestApprove(id,walletRequestid);
93
	 }
92
	 }
94
	 });
93
	 });
95
 
94
 
96
 
95