prettier formatage
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: "Segeo UI";
|
||||
font-family: 'Segeo UI';
|
||||
}
|
||||
|
||||
body {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
@@ -17,23 +17,20 @@
|
||||
<div class="inp">
|
||||
<input type="checkbox" />
|
||||
<label
|
||||
>a. Systems Administrator: Managing and maintaining computer systems
|
||||
and networks.</label
|
||||
>a. Systems Administrator: Managing and maintaining computer systems and
|
||||
networks.</label
|
||||
>
|
||||
</div>
|
||||
<div class="inp">
|
||||
<input type="checkbox" />
|
||||
<label
|
||||
>b. Software Developer: Designing, coding, testing, and maintaining
|
||||
software applications.</label
|
||||
>b. Software Developer: Designing, coding, testing, and maintaining software
|
||||
applications.</label
|
||||
>
|
||||
</div>
|
||||
<div class="inp">
|
||||
<input type="checkbox" />
|
||||
<label>
|
||||
c. Professional Chef: Creating delicious meals in a restaurant
|
||||
kitchen.
|
||||
</label>
|
||||
<label> c. Professional Chef: Creating delicious meals in a restaurant kitchen. </label>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@@ -276,8 +273,8 @@
|
||||
<section class="formulation">
|
||||
<div class="qtext">
|
||||
<p>
|
||||
Gives a "reverseWorld" function in javascript which takes as a
|
||||
parameter a word and flips it in the opposite direction
|
||||
Gives a "reverseWorld" function in javascript which takes as a parameter a word and flips
|
||||
it in the opposite direction
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
@@ -1,21 +1,19 @@
|
||||
/* Reset real moodle inputs to try in real env */
|
||||
for (const option of document.querySelectorAll("option")) {
|
||||
for (const option of document.querySelectorAll('option')) {
|
||||
option.selected = false;
|
||||
option.disabled = false;
|
||||
option.closest("select").disabled = false;
|
||||
option.closest('select').disabled = false;
|
||||
}
|
||||
|
||||
for (const input of document.querySelectorAll(
|
||||
'input[type="radio"], input[type="checkbox"]'
|
||||
)) {
|
||||
for (const input of document.querySelectorAll('input[type="radio"], input[type="checkbox"]')) {
|
||||
input.checked = false;
|
||||
input.disabled = false;
|
||||
}
|
||||
|
||||
for (const icon of document.querySelectorAll(".text-danger, .text-success")) {
|
||||
for (const icon of document.querySelectorAll('.text-danger, .text-success')) {
|
||||
icon.remove();
|
||||
}
|
||||
|
||||
for (const feedback of document.querySelectorAll(".specificfeedback")) {
|
||||
for (const feedback of document.querySelectorAll('.specificfeedback')) {
|
||||
feedback.remove();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user