Improve state management

This commit is contained in:
Augusto Gunsch 2022-01-12 08:04:19 -03:00
parent 4e504997da
commit ea389f4b1c
1 changed files with 19 additions and 13 deletions

View File

@ -43,11 +43,14 @@ $(document).ready(() => {
function getWord() {
let word = window.location.hash.replace('#', '');
if (word) {
document.title = `Inflective - ${decodeURIComponent(word)}`;
$.ajax({
url: '/langs/pl/words/' + word,
success: (data) => {
$('#ajax-content').html(generateHtml(word, data))
$('#ajax-content').html(generateHtml(word, data));
},
error: err => console.error(err)
@ -59,6 +62,9 @@ $(document).ready(() => {
// Sometimes autocomplete opens after close was called
// A better fix should be made
setTimeout(() => searchBar.autocomplete('close'), 1000);
} else {
$('#ajax-content').html('');
}
}
function getCells(forms, tags) {