blob: 2f18f0df320cdb6a6274416618eea3321b703967 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
$(document).mousemove(function (event) {
$('.torch').css({
'top': event.pageY,
'left': event.pageX
});
});
// CHECKS IF USER IS ON MOBILE
if (screen.width <= 480) {
location.href = '/404/alternate';
}
|