https://gitlab.inria.fr/lyao/visinmotion
Tip revision: dd99681039060e6dcec83a378405faa3bc4527d3 authored by lyao on 09 December 2023, 20:43:19 UTC
readme updated
readme updated
Tip revision: dd99681
button.php
<div class="row mb-3 mt-4">
<div class="col text-center">
<button
href="#"
class="btn btn-wider <?php echo $style;?>"
id = "btn_<?php echo $id;?>"
onclick="$('body').trigger('next', ['<?php echo $id;?>']); if ('<?php echo $text ?>' === 'Finish Study')$('body').trigger('finished'); $('#<?php echo $hide ?>').hide().promise().done(() => {if (!excluded) $('#<?php echo $show ?>').show()});"
<?php if($disabled) echo ' disabled';?>>
<?php echo $text ?>
</button>
</div>
</div>
