Subversion Repositories SmartDukaan

Rev

Rev 27799 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27763 tejbeer 1
$(function() {
2
	$(".partner-onboarding-index").on('click', function() {
3
 
4
		panelListing("main-content");
5
	});
6
 
7
});
8
 
9
function panelListing(domId) {
10
	doAjaxRequestHandler(context + "/partnerOnBoardingPanel", "GET",
11
		function(response) {
12
			$('#' + domId).html(response);
13
		});
14
}
15
 
16
function panelOnBoardingListing(domId) {
17
	doAjaxRequestHandler(context + "/partnerOnBoardingListing", "POST",
18
		function(response) {
19
			$('#' + domId).html(response);
20
		});
21
 
22
}
23
 
24
 
25
 
26
 
27