ajout flag isMobile.
[Epoz.git] / epoz / epoz_core / epoz_script_detect.js.dtml
old mode 100755 (executable)
new mode 100644 (file)
index 275ffb9..0867fc6
@@ -82,6 +82,7 @@ function BrowserDetect() {
    this.isMac    = (ua.indexOf('mac') != -1);
    this.isUnix   = (ua.indexOf('unix') != -1 || ua.indexOf('sunos') != -1 || ua.indexOf('bsd') != -1 || ua.indexOf('x11') != -1)
    this.isLinux  = (ua.indexOf('linux') != -1);
+   this.isMobile   = (ua.indexOf('mobile') != -1);
    
    // specific browser shortcuts
    this.isNS4x = (this.isNS && this.versionMajor == 4);