View difference between Paste ID: 5n411t7j and SrSYFTvW
SHOW: | | - or go back to the newest paste.
1
/*
2
    USAGE
3
4
    if(isMobile){ do stuff for mobile}
5
6
*/
7
8
9
var isMobile = function(){
10
    var MIN_SCREEN_WIDTH = 767;
11
    var $window = $(window);
12
13
    if($window.width() < MIN_SCREEN_WIDTH){
14
        return true;
15
    }else{
16
        return false;
17
    }
18-
};
18+
};
19
20
21
22
23
24
$(window).on('resize',function(){
25
	isMobile();
26
});