Bug 1443081 - Apply spacing via eslint --fix for DevTools. r=jdescottes

MozReview-Commit-ID: 2RVNt140Zte
This commit is contained in:
J. Ryan Stinnett
2018-03-12 13:24:38 -05:00
parent dd06aa1c17
commit 8d1c817851
1420 changed files with 7101 additions and 7101 deletions

View File

@@ -97,7 +97,7 @@ exports.l10n = name => styleInspectorL10N.getStr(name);
* @return {boolean} true if the given stylesheet is a content stylesheet,
* false otherwise.
*/
exports.isContentStylesheet = function (sheet) {
exports.isContentStylesheet = function(sheet) {
return sheet.parsingMode !== "agent";
};
@@ -106,7 +106,7 @@ exports.isContentStylesheet = function (sheet) {
*
* @param {CSSStyleSheet} sheet the DOM object for the style sheet.
*/
exports.shortSource = function (sheet) {
exports.shortSource = function(sheet) {
// Use a string like "inline" if there is no source href
if (!sheet || !sheet.href) {
return exports.l10n("rule.sourceInline");