add 10 personas for snare

This commit is contained in:
t3chn0m4g3
2018-08-14 14:20:55 +00:00
parent ff1a857241
commit e2613e7d17
1853 changed files with 182702 additions and 1 deletions

View File

@ -0,0 +1,24 @@
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();
});