Bug 1304178 - Pref on the new console frontend in nightly;r=linclark draft
authorBrian Grinstead <bgrinstead@mozilla.com>
Thu, 06 Oct 2016 14:20:04 -0700
changeset 421774 2398838bd0764f4eb6590b55ec41c77bc805838a
parent 421773 e93ad8202f940c3cd0a8a747f68abf8f74a6027a
child 533167 0f174564665afdf98a18a4dc090b445f6be47174
push id31595
push userbgrinstead@mozilla.com
push dateThu, 06 Oct 2016 21:20:18 +0000
reviewerslinclark
bugs1304178
milestone52.0a1
Bug 1304178 - Pref on the new console frontend in nightly;r=linclark MozReview-Commit-ID: 2NtGRWfvTdM
devtools/client/preferences/devtools.js
--- a/devtools/client/preferences/devtools.js
+++ b/devtools/client/preferences/devtools.js
@@ -309,18 +309,22 @@ pref("devtools.webconsole.persistlog", f
 // in the Web Console to display a timestamp, or |false| to not display
 // any timestamps.
 pref("devtools.webconsole.timestampMessages", false);
 
 // Web Console automatic multiline mode: |true| if you want incomplete statements
 // to automatically trigger multiline editing (equivalent to shift + enter).
 pref("devtools.webconsole.autoMultiline", true);
 
-// Enable the experimental webconsole frontend (work in progress)
+// Enable the experimental webconsole frontend
+#if defined(NIGHTLY_BUILD)
+pref("devtools.webconsole.new-frontend-enabled", true);
+#else
 pref("devtools.webconsole.new-frontend-enabled", false);
+#endif
 
 // Enable the experimental support for source maps in console (work in progress)
 pref("devtools.sourcemap.locations.enabled", false);
 
 // The number of lines that are displayed in the web console.
 pref("devtools.hud.loglimit", 1000);
 
 // The number of lines that are displayed in the web console for the Net,