/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Localized strings for (devtools/client/locales/en-US/startup.properties)
loader.lazyGetter(this, "L10N", function () { const { LocalizationHelper } = require("resource://devtools/shared/l10n.js"); returnnew LocalizationHelper("devtools/client/locales/startup.properties");
});
const { div } = dom;
/** * App component * The top level component for representing main panel
*/ class App extends Component { static get propTypes() { return { // List of actions passed to HAR importer.
actions: PropTypes.object.isRequired, // The backend connector object.
connector: PropTypes.object.isRequired, // Callback for opening links in the UI
openLink: PropTypes.func, // Callback for opening split console.
openSplitConsole: PropTypes.func, // Service to enable the source map feature.
sourceMapURLService: PropTypes.object, // True if the stats panel is opened.
statisticsOpen: PropTypes.bool.isRequired, // Document which settings menu will be injected to
toolboxDoc: PropTypes.object.isRequired, // Syncing blocked requests
addBlockedUrl: PropTypes.func,
};
} // Rendering
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.