mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 09:02:45 +08:00
17 lines
366 B
JavaScript
17 lines
366 B
JavaScript
|
|
if (!/iphone|ipod|ipad|android/i.test(navigator.userAgent))
|
|
{
|
|
if (window.snowFall && window.rl)
|
|
{
|
|
let body = document.body;
|
|
addEventListener('sm-show-screen', e => {
|
|
if ('login' == e.detail) {
|
|
window.snowFall.snow(body, {
|
|
shadow: true, round: true, minSize: 2, maxSize: 5
|
|
});
|
|
} else if (body.snow) {
|
|
body.snow.clear();
|
|
}
|
|
});
|
|
}
|
|
}
|