17 lines
674 B
JavaScript
17 lines
674 B
JavaScript
|
$(function(){
|
|||
|
// Window load and resize.
|
|||
|
$(window).bind('load resize', function() {
|
|||
|
if(debug){
|
|||
|
if(window.matchMedia("(min-width: 768px) and (max-width: 959px)").matches){
|
|||
|
$('#debug').html("Tablet (Portrait)");
|
|||
|
} else if(window.matchMedia("(min-width: 480px) and (max-width: 767px)").matches){
|
|||
|
$('#debug').html("Mobile (Landscape)");
|
|||
|
} else if(window.matchMedia("(max-width: 767px)").matches){
|
|||
|
$('#debug').html("Mobile (Portrait)");
|
|||
|
} else{
|
|||
|
$('#debug').html("Desktop & Tablet (Landscape)");
|
|||
|
}
|
|||
|
$('#debug').append(" – ("+ $(window).width() + ' x '+ $(window).height() +')px');
|
|||
|
}
|
|||
|
});
|
|||
|
});
|