Bug 1180706 - Enable touch event support on Windows Nightly. r=botond

This commit is contained in:
Kartikaya Gupta 2016-01-29 22:58:43 -05:00
parent cbe1f8b9b2
commit f4d4f56f69

View File

@ -4630,8 +4630,9 @@ pref("dom.mozPermissionSettings.enabled", false);
// W3C touch events
// 0 - disabled, 1 - enabled, 2 - autodetect
// Enabling it for Windows is tracked by bug 736048.
#if defined(XP_WIN) || defined(XP_MACOSX)
#if defined(XP_MACOSX)
pref("dom.w3c_touch_events.enabled", 0);
#elif defined(XP_WIN) && !defined(NIGHTLY_BUILD)
pref("dom.w3c_touch_events.enabled", 0);
#else
pref("dom.w3c_touch_events.enabled", 2);