comparison Applications/StoneWebViewer/WebApplication/index.html @ 1949:d3ae6858e77b

more consistent handling of numberOfFrames
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 Jul 2022 16:19:18 +0200
parents b8f54ab47b3b
children 6ffd65cfd2ee 142c7ee8fe1f
comparison
equal deleted inserted replaced
1948:d459477804bf 1949:d3ae6858e77b
702 <button class="btn btn-primary" @click="DecrementFrame()"> 702 <button class="btn btn-primary" @click="DecrementFrame()">
703 <i class="fas fa-step-backward"></i> 703 <i class="fas fa-step-backward"></i>
704 </button> 704 </button>
705 </div> 705 </div>
706 <span data-toggle="tooltip" data-title="Current frame number"> 706 <span data-toggle="tooltip" data-title="Current frame number">
707 &nbsp;&nbsp;{{ currentFrame }} / {{ numberOfFrames }}&nbsp;&nbsp; 707 &nbsp;&nbsp;{{ currentFrame + 1 }} / {{ numberOfFrames }}&nbsp;&nbsp;
708 </span> 708 </span>
709 <div class="btn-group btn-group-sm" role="group"> 709 <div class="btn-group btn-group-sm" role="group">
710 <button class="btn btn-primary" @click="IncrementFrame()"> 710 <button class="btn btn-primary" @click="IncrementFrame()">
711 <i class="fas fa-step-forward"></i> 711 <i class="fas fa-step-forward"></i>
712 </button> 712 </button>