//Mobil oder nicht mobil? $get_device = function() { if ($('.er').css('display') == "block") { return "desktop"; } if ($('.er').css('display') == "none") { return "mobile"; } } function prep_layout(){ //DESKTOP if($get_device() == "desktop") { var bodyhoehe = $('body').outerHeight(); var bodybreite = $('body').outerWidth(); var containerhoehe = $('#container').outerHeight(); var containerbreite = $('#container').outerWidth(); $('#container').css("top", (bodyhoehe - containerhoehe)/2); $('#container').css("left", (bodybreite - containerbreite)/2); //$('#sidemenu').mCustomScrollbar(); } } //Javascript für die Initialisierung $(function() { $.ajaxSetup({ cache: false }); $(document).bind("ajaxSend", function(elm, xhr, s){ var token = $('#token').html(); xhr.setRequestHeader('X-CSRF-Token', token); }); prep_layout(); $(document).tooltip(); //#####Sidemenü fertig##### $.post("./core/callmodul.php").done(function(antwort){ $.post("./core/getcurmod.php").done(function(a){ $(".element[punktid='"+a+"']").addClass('smakt'); }); $('#seiteninhalt').hide().html(antwort).show(); }); }); $(window).resize(function () { prep_layout(); });