Bug 1245121 - Enable JSON Viewer on !RELEASE_BUILD. r=Honza

MozReview-Commit-ID: ItfrT4SPE6e
This commit is contained in:
J. Ryan Stinnett 2016-02-02 10:40:42 -06:00
parent 3bd291ab08
commit e1bf9e0d01

View File

@ -326,11 +326,12 @@ pref("devtools.fontinspector.enabled", false);
// version for each user.
pref("devtools.telemetry.tools.opened.version", "{}");
// Enable the JSON View tool (an inspector for application/json documents)
#ifdef MOZ_DEV_EDITION
pref("devtools.jsonview.enabled", true);
// Enable the JSON View tool (an inspector for application/json documents) on
// Nightly and Dev. Edition.
#ifdef RELEASE_BUILD
pref("devtools.jsonview.enabled", false);
#else
pref("devtools.jsonview.enabled", false);
pref("devtools.jsonview.enabled", true);
#endif
// Disable the HTML responsive design tool by default. Currently disabled until