Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

push:
branches:
- main
- new-ng-patch

workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

push:
branches:
- main
- new-ng-patch

workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion dist/accessible-autocomplete.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/accessible-autocomplete.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.preact.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.preact.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.react.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lib/accessible-autocomplete.react.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/ajax-source.html
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ <h1>Accessible Autocomplete AJAX source example</h1>
var submittedEl = document.querySelector('.submitted')
submittedEl.classList.remove('submitted--hidden')
var params = new URLSearchParams(document.location.search.split('?')[1])
document.querySelector('.submitted__last-location').innerHTML = params.get('last-location')
document.querySelector('.submitted__passport-location').innerHTML = params.get('passport-location')
document.querySelector('.submitted__last-location').textContent = params.get('last-location')
document.querySelector('.submitted__passport-location').textContent = params.get('passport-location')
}
</script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion examples/form-single.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ <h1>Accessible Autocomplete single field form example</h1>
var submittedEl = document.querySelector('.submitted')
submittedEl.classList.remove('submitted--hidden')
var params = new URLSearchParams(document.location.search.split('?')[1])
document.querySelector('.submitted__last-location').innerHTML = params.get('last-location')
document.querySelector('.submitted__last-location').textContent = params.get('last-location')
}
</script>
</body>
Expand Down
4 changes: 2 additions & 2 deletions examples/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -665,8 +665,8 @@ <h1>Accessible Autocomplete form example</h1>
var submittedEl = document.querySelector('.submitted')
submittedEl.classList.remove('submitted--hidden')
var params = new URLSearchParams(document.location.search.split('?')[1])
document.querySelector('.submitted__last-location').innerHTML = params.get('last-location')
document.querySelector('.submitted__passport-location').innerHTML = params.get('passport-location')
document.querySelector('.submitted__last-location').textContent = params.get('last-location')
document.querySelector('.submitted__passport-location').textContent = params.get('passport-location')
}
</script>
</body>
Expand Down
Loading