Skip to content

Commit

Permalink
Merge pull request #511 from correctexam/235-on-mobile-add-swipe-righ…
Browse files Browse the repository at this point in the history
…t-and-left-to-go-from-one-student-to-the-next-one

235 on mobile add swipe right and left to go from one student to the next one
  • Loading branch information
barais authored Mar 17, 2024
2 parents b8298c1 + 1a9f38d commit c7bfb15
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,9 @@ export class QuestionpropertiesviewComponent implements OnInit, OnDestroy {
* When interacting with the point step widget
*/
public defaultpointChange(input: any): void {
input.preventDefault();

if (input.preventDefault) {
input.preventDefault();
}
// this.updateStepList(input.target.value);
this.contentChange();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h2>
<ng-template pTemplate="header">
<div class="header-radar">
<div class="radar-container">
<p-chart type="radar" [data]="data_radar_courant"></p-chart>
<p-chart type="radar" [data]="data_radar_courant" [responsive]="true" [height]="'65vh'"></p-chart>
</div>
</div>
</ng-template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,10 @@
}
.statgenerale {
padding: 0.5em;
font-size: larger;
font-weight: bold;
color: gray;
}
.statgenerale > span {
display: block;
font-size: larger;
color: black;
}
#selectstudent {
Expand Down
3 changes: 2 additions & 1 deletion src/main/webapp/i18n/en/scanexammodule.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,7 @@
"by": "by ",
"at": " at ",
"randomcorrection": "Random horizontal correction",
"randomcorrectionTooltip": "Allows the marker to propose a random order in which the exam sheets are evaluated for this question."
"randomcorrectionTooltip": "Allows the marker to propose a random order in which the exam sheets are evaluated for this question.",
"defaultpointTooltip": "Default point for this question"
}
}
3 changes: 2 additions & 1 deletion src/main/webapp/i18n/fr/scanexammodule.json
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@
"by": "Corrigé par ",
"at": ", le ",
"randomcorrection": "Correction horizontale aléatoire",
"randomcorrectionTooltip": "Permet de proposer au correcteur un tirage aléatoire pour l'ordre de correction des copies pour cette question"
"randomcorrectionTooltip": "Permet de proposer au correcteur un tirage aléatoire pour l'ordre de correction des copies pour cette question",
"defaultpointTooltip": "Point par défaut pour cette question"
}
}

0 comments on commit c7bfb15

Please sign in to comment.