Subversion Repositories SmartDukaan

Rev

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

Rev 25649 Rev 25650
Line 603... Line 603...
603
	loadPriceDrop("main-content");
603
	loadPriceDrop("main-content");
604
});
604
});
605
 
605
 
606
$(document).ready(function() {
606
$(document).ready(function() {
607
	$("#notifyType").trigger('change');
607
	$("#notifyType").trigger('change');
608
	
608
 
609
});
609
});
610
 
610
 
611
function notifyTypeChange() {
611
function notifyTypeChange() {
612
 
612
 
613
	var notifyType = $('#notifyType').val();
613
	var notifyType = $('#notifyType').val();
Line 615... Line 615...
615
 
615
 
616
	doGetAjaxRequestHandler(
616
	doGetAjaxRequestHandler(
617
			context + "/notifications?notifyType=" + notifyType, function(
617
			context + "/notifications?notifyType=" + notifyType, function(
618
					response) {
618
					response) {
619
				$('.notification-container').html(response);
619
				$('.notification-container').html(response);
620
				console.log(response)
-
 
621
 
620
 
622
			});
621
			});
623
}
622
}