Bug 1244265 - Show file prompt upon save button click. r?Honza draft
authorDavid Walsh <dwalsh@mozilla.com>
Mon, 18 Apr 2016 12:27:41 -0500
changeset 352752 5906cb483b34128b76b943a23b321b287c3002e2
parent 352749 a8d9d8433671fb57b868945011b6c943a107ffe0
child 352801 d13a13e916d028cebfa447b7e73556cab811f99e
push id15779
push userbmo:dwalsh@mozilla.com
push dateMon, 18 Apr 2016 17:27:17 +0000
reviewersHonza
bugs1244265
milestone48.0a1
Bug 1244265 - Show file prompt upon save button click. r?Honza MozReview-Commit-ID: LS053H3nbHI
devtools/client/jsonview/main.js
--- a/devtools/client/jsonview/main.js
+++ b/devtools/client/jsonview/main.js
@@ -7,17 +7,17 @@
 
 "use strict";
 
 const { Cu } = require("chrome");
 const Services = require("Services");
 
 const { XPCOMUtils } = Cu.import("resource://gre/modules/XPCOMUtils.jsm", {});
 
-XPCOMUtils.defineLazyGetter(this, "JsonViewService", function() {
+XPCOMUtils.defineLazyGetter(this, "JsonViewUtils", function() {
   return require("devtools/client/jsonview/utils");
 });
 
 /**
  * Singleton object that represents the JSON View in-content tool.
  * It has the same lifetime as the browser. Initialization done by
  * DevTools() object from devtools/client/framework/devtools.js
  */