diff --git a/booth/templates/base.html b/booth/templates/base.html index 50c76a9..754653c 100644 --- a/booth/templates/base.html +++ b/booth/templates/base.html @@ -21,6 +21,11 @@ try { if (b !== null && sessionStorage.getItem('booth.reveal:' + b) === '1') d.classList.add('reveal-all'); } catch (e) {} + /* r2c S2: the review stage's 1:1, before the stage exists, so a 1:1 reel + never shows a stage in Fit. Anything but 'one' (or unreadable) = Fit. */ + try { + if (localStorage.getItem('booth.fit') === 'one') d.classList.add('stage-one'); + } catch (e) {} })();