Zhen Ye Claude Opus 4.6 (1M context) commited on
Commit
7b80bd1
·
1 Parent(s): 94ff288

fix(demo): add missing updateTimeDisplay calls on event marker and log clicks

Browse files
Files changed (1) hide show
  1. isr-command-demo.html +2 -0
isr-command-demo.html CHANGED
@@ -3581,6 +3581,7 @@
3581
  STATE.playheadFrame = evt.frame;
3582
  updatePlayheadPosition();
3583
  updateFrameCounter();
 
3584
  });
3585
  container.appendChild(marker);
3586
  }
@@ -3679,6 +3680,7 @@
3679
  STATE.playheadFrame = parseInt(entry.dataset.frame, 10);
3680
  updatePlayheadPosition();
3681
  updateFrameCounter();
 
3682
  });
3683
  });
3684
  }
 
3581
  STATE.playheadFrame = evt.frame;
3582
  updatePlayheadPosition();
3583
  updateFrameCounter();
3584
+ updateTimeDisplay();
3585
  });
3586
  container.appendChild(marker);
3587
  }
 
3680
  STATE.playheadFrame = parseInt(entry.dataset.frame, 10);
3681
  updatePlayheadPosition();
3682
  updateFrameCounter();
3683
+ updateTimeDisplay();
3684
  });
3685
  });
3686
  }