-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
57 lines (29 loc) · 1018 Bytes
/
Copy pathscript.js
File metadata and controls
57 lines (29 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
$('#zeige_error_log').click(function(){
function load_error(){
$.ajax({
method: "GET",
url: "php_error.log",
}).done(function( msg ) {
$('#background').css("display","block");
$('#result').css("display","block");
$('#loghtml').html(msg);
$('#close').click(function(){
$('#result').css("display","none");
$('#background').css("display","none");
})
$('#kill').click(function(){
$.ajax({
method: "GET",
url: "kill.php",
}).done(function( msg ) {
$('#loghtml').html('<?php echo $language['kill_success']; ?>');
});
});
});
}
load_error()
});
$('#background').click(function(){
$('#result').css("display","none");
$('#background').css("display","none");
})