@diegovelasquezweb/a11y-engine 0.11.13 → 0.11.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.mjs +1 -1
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -1031,7 +1031,7 @@ export async function getChecklist(options = {}) {
|
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
1033
|
function setManualState(criterion, newState) {
|
|
1034
|
-
const card = document.getElementById('manual-' + criterion.replace(
|
|
1034
|
+
const card = document.getElementById('manual-' + criterion.replace(/\\./g, '-'));
|
|
1035
1035
|
if (!card) return;
|
|
1036
1036
|
const current = card.dataset.state || '';
|
|
1037
1037
|
card.dataset.state = current === newState ? '' : newState;
|