Subversion Repositories SmartDukaan

Rev

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

Rev 26817 Rev 26825
Line 1... Line 1...
1
$(document).on('click', '.activated_imeis', function() {
1
$(document).on('click', '.activated_imeis', function() {
-
 
2
	if(typeof pendingPO != "undefined") {
2
	delete pendingPO;
3
		delete pendingPO;
3
	delete pendingPOCustomer;
4
		delete pendingPOCustomer;
-
 
5
	}
4
	doGetAjaxRequestHandler(context+"/activatedImeis", function(response){
6
	doGetAjaxRequestHandler(context+"/activatedImeis", function(response){
5
		$('#main-content').html(response);
7
		$('#main-content').html(response);
6
	});
8
	});
7
});
9
});
8
10