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

This commit is contained in:
J. Ryan Stinnett 2016-02-02 10:40:42 -06:00
Родитель 45e6ab33d8
Коммит 3e1c3516ad
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -325,11 +325,12 @@ pref("devtools.fontinspector.enabled", true);
// 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