mirror of
https://github.com/wassname/cardsforscience.git
synced 2026-08-05 12:40:49 +08:00
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
$(function () {
|
|
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
|
|
alert('lol');
|
|
$('#MobileWarning').modal('show');
|
|
} else {
|
|
Console.log(navigator.userAgent);
|
|
}
|
|
});
|