X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Ftemplate-helper.js;h=c61958db9a31a67ae34b84dea72edfa6a4e125f0;hb=885150f50a04b408bfadc3a818615da066908344;hp=00937a0d554318e026b2083190379cead7eaa71c;hpb=4ab85bf22ece77cccd4e92435208bca5858816f6;p=squeep-html-template-helper diff --git a/lib/template-helper.js b/lib/template-helper.js index 00937a0..c61958d 100644 --- a/lib/template-helper.js +++ b/lib/template-helper.js @@ -70,6 +70,7 @@ function htmlHead(pagePathLevel, ctx, options) { } = options; return `\t \t\t +\t\t \t\t \t\t ${headElements.map((e) => '\t\t' + e).join('\n')} @@ -91,8 +92,9 @@ function htmlBody(pagePathLevel, ctx, options, main = []) { const { bodyAttributes = {}, } = options; + const firefoxFix = '\n'; // This fixes a layout rendering flash on load in Firefox; do not know why this works, but it does. return ` -\t +\t${firefoxFix} ${htmlHeader(pagePathLevel, ctx, options)} ${htmlMessages(ctx, options)} \t\t
@@ -145,7 +147,7 @@ ${spacer}` : ''; * @returns {String} */ function htmlHeader(pagePathLevel, ctx, options) { - const rootPathPfx = '../'.repeat(Math.max(pagePathLevel - 1, 0)); + const rootPathPfx = '../'.repeat(pagePathLevel); const { logoUrl = '', pageTitle = '', @@ -281,9 +283,9 @@ ${UL(ctx.notifications, 1)} * @param {Object[]=} options.navLinks * @param {String[]=} options.footerEntries * @param {String=} options.errorHeading - * @param {String=} options.errorContent + * @param {String[]=} options.errorContent * @param {String=} options.notificationHeading - * @param {String=} options.notificationContent + * @param {String[]=} options.notificationContent * @param {String[]} main - contents * @returns {String} */