text insert radio to the right
This commit is contained in:
parent
8f412bdd0f
commit
8c62d6bb0e
@ -67,7 +67,8 @@ window.onload = function() {
|
||||
searchCandidatesOf(box)
|
||||
})
|
||||
|
||||
insertRadios = Array.from(insertRadioGroup.getElementsByTagName("input")).slice(1)
|
||||
insertRadios = Array.from(insertRadioGroup.getElementsByTagName("input"))
|
||||
insertRadios.pop()
|
||||
|
||||
for (label of document.getElementsByTagName("label")) {
|
||||
label.control.label = label
|
||||
|
@ -78,15 +78,15 @@
|
||||
</form>
|
||||
<div class='d-flex mb-2'>
|
||||
<div id='insertRadioGroup' class='radioGroup btn-group flex-fill'>
|
||||
<input type='radio'class='btn-check' id='insertRadio0' value='' name='insertRadioGroup' onclick='insert(this)' accesskey='0' checked />
|
||||
<label for='insertRadio0' class='btn btn-primary' title='Clavier'>
|
||||
<i class="bi bi-cursor-text"></i>
|
||||
</label>
|
||||
<?php
|
||||
for($value=1; $value<=9; $value++) {
|
||||
echo " <input type='radio'class='btn-check' id='insertRadio$value' value='$value' name='insertRadioGroup' onclick='insert(this)' accesskey='$value' disabled /><label for='insertRadio$value' class='btn btn-primary' title='Insérer un $value'>$value</label>\n";
|
||||
}
|
||||
?>
|
||||
<input type='radio'class='btn-check' id='insertRadio0' value='' name='insertRadioGroup' onclick='insert(this)' accesskey='0' checked />
|
||||
<label for='insertRadio0' class='btn btn-primary' title='Clavier'>
|
||||
<i class="bi bi-cursor-text"></i>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class='mb-3'>
|
||||
|
Loading…
x
Reference in New Issue
Block a user