Subversion Repositories SmartDukaan

Rev

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

Rev 23347 Rev 23349
Line 82... Line 82...
82
		$('#districtName').html(districtNameElements);
82
		$('#districtName').html(districtNameElements);
83
	}
83
	}
84
}
84
}
85
 
85
 
86
function retailerInfo(domId){
86
function retailerInfo(domId){
87
	var response = doGetAjaxRequest(context+"/retailerInfo");
87
	doAjaxRequestHandler(context+"/retailerInfo", "GET", function(response){
88
	$('#' + domId).html(response); 
88
		$('#' + domId).html(response); 
-
 
89
	});
89
}
90
}
90
91