support #test in card-info.html

allows us to use scripts/ts-run and ts-watch to test the page
in Chrome by surfing to http://127.0.0.1:40000/_anki/pages/card-info.html#testXXX
This commit is contained in:
Damien Elmes 2021-10-14 17:09:01 +10:00
parent 3672b0fe73
commit 53ce7d2759

View file

@ -10,5 +10,13 @@
</head> </head>
<body> <body>
<div id="main"></div> <div id="main"></div>
<script>
// use #testXXXX where XXXX is card ID to test
if (window.location.hash.startsWith("#test")) {
const cid = parseInt(window.location.hash.substr("#test".length), 10);
anki.cardInfo(document.getElementById("main"), cid, true);
}
</script>
</body> </body>
</html> </html>