disable reload on ergo page; allow camera capture
This commit is contained in:
parent
f7b24b4d50
commit
50de29284f
@ -68,19 +68,21 @@ function selectBoatChange() {
|
||||
}
|
||||
|
||||
function reloadPage() {
|
||||
let pageTitle = document.title;
|
||||
let attentionMessage = 'Riemen- und Dollenbruch';
|
||||
if (!window.location.href.includes("ergo")){
|
||||
let pageTitle = document.title;
|
||||
let attentionMessage = 'Riemen- und Dollenbruch';
|
||||
|
||||
document.addEventListener('visibilitychange', function() {
|
||||
let isPageActive = !document.hidden;
|
||||
document.addEventListener('visibilitychange', function() {
|
||||
let isPageActive = !document.hidden;
|
||||
|
||||
if(!isPageActive){
|
||||
document.title = attentionMessage;
|
||||
} else {
|
||||
document.title = pageTitle;
|
||||
location.reload();
|
||||
}
|
||||
});
|
||||
if(!isPageActive){
|
||||
document.title = attentionMessage;
|
||||
} else {
|
||||
document.title = pageTitle;
|
||||
location.reload();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function setMaxAmountRowers(name: string, rowers: number) {
|
||||
|
@ -37,7 +37,7 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
{{ macros::input(label="Zeit [(hh:)mm:ss]/Distanz [m]", name="result", required=true, type="text", class="input") }}
|
||||
<input type="file" name="proof" class="input">
|
||||
<input type="file" name="proof" class="input" accept="image/*" capture="camera">
|
||||
<input type="submit" value="Speichern" class="btn btn-primary w-full col-span-4 m-auto"/>
|
||||
</form>
|
||||
</div>
|
||||
@ -61,7 +61,7 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
{{ macros::input(label="Zeit [(hh:)mm:ss]/Distanz [m]", name="result", required=true, type="text", class="input") }}
|
||||
<input type="file" name="proof" class="input">
|
||||
<input type="file" name="proof" class="input" accept="image/*" capture="camera">
|
||||
<input type="submit" value="Speichern" class="btn btn-primary w-full col-span-4 m-auto"/>
|
||||
</form>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user