2015-04-01 20:51:04 +02:00

15 lines
403 B
JavaScript

$(document).ready(function() {
new SYSTEM('./api.php',1,'start');
$('#impressum').click(function(){
$('#modaltext').load('./?page=impressum',function(){
$('#modal_text').modal('show');})
})
$('#about').click(function(){
$('#modaltext').load('./?page=about',function(){
$('#modal_text').modal('show');})
})
});