style(eslint): match operator-linebreak preferences

This commit is contained in:
Peter Jaszkowiak
2018-11-28 20:29:43 -07:00
committed by Julian Lam
parent 89c025d102
commit ba619c7ec8
40 changed files with 241 additions and 238 deletions

View File

@@ -89,11 +89,11 @@ module.exports = function (middleware) {
}, next);
},
function (results, next) {
var str = results.header
+ (res.locals.postHeader || '')
+ results.content + '<script id="ajaxify-data"></script>'
+ (res.locals.preFooter || '')
+ results.footer;
var str = results.header +
(res.locals.postHeader || '') +
results.content + '<script id="ajaxify-data"></script>' +
(res.locals.preFooter || '') +
results.footer;
translate(str, req, res, next);
},