mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 19:54:43 +08:00
06274c6a7c
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
18 lines
No EOL
522 B
JavaScript
18 lines
No EOL
522 B
JavaScript
|
|
$(function () {
|
|
if (window.snowFall && window.rl && !window.rl.settingsGet('Auth'))
|
|
{
|
|
var
|
|
sUserAgent = (navigator.userAgent || '').toLowerCase(),
|
|
bIsiOSDevice = -1 < sUserAgent.indexOf('iphone') || -1 < sUserAgent.indexOf('ipod') || -1 < sUserAgent.indexOf('ipad'),
|
|
bIsAndroidDevice = -1 < sUserAgent.indexOf('android')
|
|
;
|
|
|
|
if (!bIsiOSDevice && !bIsAndroidDevice)
|
|
{
|
|
window.snowFall.snow(document.getElementsByTagName('body'), {
|
|
shadow: true, round: true, minSize: 2, maxSize: 5
|
|
});
|
|
}
|
|
}
|
|
}); |