# HG changeset patch # User drewp@bigasterisk.com # Date 2019-06-10 23:16:50 # Node ID 5b157494a7412051f38c59a6614a7e77caf46dd5 # Parent d7ea6d473bf681055b1cde432c2f8bce8826fffa vidref always show song time, and don't lose the details on normal size view Ignore-this: 9d74c2424efff1bb4519c9303cbef942 diff --git a/light9/web/light9-vidref-replay-stack.js b/light9/web/light9-vidref-replay-stack.js --- a/light9/web/light9-vidref-replay-stack.js +++ b/light9/web/light9-vidref-replay-stack.js @@ -156,8 +156,8 @@ class Light9VidrefReplayStack extends Li .value="${this.songTime}" @input="${this.userMovedSongTime}" min="0" max="0" step=".001"> -
${this.musicState.song}
-
showing song time ${rounding(this.songTime, 3)}
` : ''; +
${this.musicState.song}
` : ''; + const globalCommands = this.size != 'small' ? html`
@@ -167,6 +167,7 @@ class Light9VidrefReplayStack extends Li return html`
${songTimeRange} +
showing song time ${rounding(this.songTime, 3)}
clips:
${this.players} diff --git a/light9/web/light9-vidref-replay.js b/light9/web/light9-vidref-replay.js --- a/light9/web/light9-vidref-replay.js +++ b/light9/web/light9-vidref-replay.js @@ -129,6 +129,7 @@ class Light9VidrefReplay extends LitElem } return html` +${details} `; }