0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00

Hide flashcard title and <hr> tag from TalkBack.

Fixes #4640.
This commit is contained in:
Enno Hermann 2017-06-05 11:55:54 +01:00
parent b26410dbb6
commit e86d66a4ef
2 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<!doctype html>
<html class="mobile android linux js">
<head>
<title>AnkidDroid Flashcard</title>
<title aria-hidden="true">AnkiDroid Flashcard</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="file:///android_asset/flashcard.css">
<link rel="stylesheet" type="text/css" href="file:///android_asset/ruby.css">

View File

@ -99,6 +99,9 @@ window.onload = function() {
window.scrollTo(0,0);
resizeImages();
window.location.href = "#answer";
/* Prevent the <hr> tag being read out as "splitter" by TalkBack
when the answer is revealed. */
document.getElementById("answer").aria-hidden = "true";
};
var onPageFinished = function() {