diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-08-13 13:45:39 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-08-13 13:45:39 +0200 |
commit | c54bbf01fda7690f4585b1e329ce1fd0b4abd42a (patch) | |
tree | d315b26c8c407acf7c8c44edf9c58ca36433dadd | |
parent | 7dfb0c2168fd6f04e3c2eccbd5f589baa9d0b0e0 (diff) | |
download | UXP-c54bbf01fda7690f4585b1e329ce1fd0b4abd42a.tar UXP-c54bbf01fda7690f4585b1e329ce1fd0b4abd42a.tar.gz UXP-c54bbf01fda7690f4585b1e329ce1fd0b4abd42a.tar.lz UXP-c54bbf01fda7690f4585b1e329ce1fd0b4abd42a.tar.xz UXP-c54bbf01fda7690f4585b1e329ce1fd0b4abd42a.zip |
Enable the JSON View tool by default.
Follow-up to issue #1138.
-rw-r--r-- | devtools/client/preferences/devtools.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/devtools/client/preferences/devtools.js b/devtools/client/preferences/devtools.js index dea61e37f..f893b9fb5 100644 --- a/devtools/client/preferences/devtools.js +++ b/devtools/client/preferences/devtools.js @@ -353,13 +353,8 @@ pref("devtools.editor.autocomplete", true); // version for each user. pref("devtools.telemetry.tools.opened.version", "{}"); -// Enable the JSON View tool (an inspector for application/json documents) on -// Nightly and Dev. Edition. -#ifdef RELEASE_OR_BETA -pref("devtools.jsonview.enabled", false); -#else +// Enable the JSON View tool (an inspector for application/json documents) pref("devtools.jsonview.enabled", true); -#endif // Enable the HTML responsive design mode for all channels. pref("devtools.responsive.html.enabled", true); |