From 3465a8bef07c5cf8142600ed0ce8b880877c5ed4 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Fri, 25 Jul 2014 18:55:45 +0400 Subject: [PATCH] Disable mobile --- app/js/lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/js/lib/config.js b/app/js/lib/config.js index 449fe066..f4301841 100644 --- a/app/js/lib/config.js +++ b/app/js/lib/config.js @@ -38,7 +38,7 @@ Config.Navigator = { retina: window.devicePixelRatio > 1, ffos: navigator.userAgent.match(/mobi.+Gecko/i), touch: screen.width <= 768, - mobile: true//screen.width < 480 + mobile: screen.width < 480 }; Config.Schema = Config.Schema || {};