Subversion Repositories SmartDukaan

Rev

Rev 27754 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27754 Rev 30599
Line 7... Line 7...
7
 
7
 
8
	$(document).on('click', ".auth-tracking-detail", function() {
8
	$(document).on('click', ".auth-tracking-detail", function() {
9
 
9
 
10
 
10
 
11
		var emails = $('#authUser').val()
11
		var emails = $('#authUser').val()
12
		var date = startDate
12
		var mapTime = getDatesFromPicker('input[name="mapTime"]').startDate;
13
		console.log(emails)
13
		console.log(emails)
14
		console.log(date);
14
		console.log(date);
15
		var url = "/map?emails=" + emails + "&date="
15
		var url = "/map?emails=" + emails + "&date=" + mapTime;
16
			+ startDate;
-
 
17
		doAjaxRequestHandler(context + url, "GET", function(response) {
16
		doAjaxRequestHandler(context + url, "GET", function(response) {
18
			{ }
-
 
19
			console.log(response)
-
 
20
 
-
 
21
			$('.auth-user-map-info').html(response);
17
			$('.auth-user-map-info').html(response);
22
 
-
 
23
		});
18
		});
24
 
19
 
25
 
20
 
26
	});
21
	});
27
 
22