mirror of
				https://github.com/telekom-security/tpotce.git
				synced 2025-11-04 06:22:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			469 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			469 B
		
	
	
	
		
			Text
		
	
	
	
	
	
function showfirstrunwizard(){
 | 
						|
	$.colorbox({
 | 
						|
		opacity:0.4, 
 | 
						|
		transition:"elastic", 
 | 
						|
		speed:100, 
 | 
						|
		width:"70%", 
 | 
						|
		height:"70%", 
 | 
						|
		href: OC.filePath('firstrunwizard', '', 'wizard.php'),
 | 
						|
		onClosed : function(){
 | 
						|
			$.ajax({
 | 
						|
			url: OC.filePath('firstrunwizard', 'ajax', 'disable.php'),
 | 
						|
			data: ""
 | 
						|
			});
 | 
						|
		}  
 | 
						|
	});
 | 
						|
}
 | 
						|
 | 
						|
$('#showWizard').live('click', function () {	
 | 
						|
	showfirstrunwizard();
 | 
						|
});
 | 
						|
 | 
						|
$('#closeWizard').live('click', function () {	
 | 
						|
		$.colorbox.close();
 | 
						|
});
 |