Subversion Repositories SmartDukaan

Rev

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

Rev 16124 Rev 16133
Line 611... Line 611...
611
}    
611
}    
612
$('.notificationok').on('click',function(e){
612
$('.notificationok').on('click',function(e){
613
	e.preventDefault();
613
	e.preventDefault();
614
	$('.notificationmodal').modal('hide');
614
	$('.notificationmodal').modal('hide');
615
	// setTimeout(function(){ $('.notificationmodal').modal('hide'); }, 1000);
615
	// setTimeout(function(){ $('.notificationmodal').modal('hide'); }, 1000);
616
	ga('send', 'event', 'popupnotification', 'ok', me);
616
	ga('send', 'event', 'popupnotification-'+$(this).parent().data('id'), 'ok', me);
-
 
617
	var properties = {};
-
 
618
	properties.id = String($(this).parent().data('id'));
617
	pma.send('popupnotification','click','ok',me);
619
	pma.send('popupnotification','click','ok',me,properties);
618
	document.location = $(this).parent().prop('href');
620
	document.location = $(this).parent().prop('href');
619
});
621
});
620
$(document).on('click','.clearfilter',function(){	
622
$(document).on('click','.clearfilter',function(){	
621
	$('.filterbrand').each(function(){
623
	$('.filterbrand').each(function(){
622
		$(this).prop('checked',false);
624
		$(this).prop('checked',false);