Release version 1.0.4

This commit is contained in:
Eduardo Gomez 2021-05-24 20:31:28 +02:00
parent a6bf80fe14
commit e241fb52b4
5 changed files with 21 additions and 4 deletions

16
.editorconfig Normal file
View File

@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.js]
quote_type = single
[*.md]
max_line_length = off
trim_trailing_whitespace = false

File diff suppressed because one or more lines are too long

View File

@ -14,6 +14,7 @@
"Great! Next, complete checkout for full access.": "Super ! Effectuez le paiement pour obtenir l'accès complet.",
"Great! You've successfully subscribed.": "Super ! Vous vous êtes inscrit avec succès.",
"JavaScript license information": "Informations sur la licence JavaScript",
"More": "En savoir plus",
"No posts": "Aucun article",
"No posts found": "Aucun article trouvé",
"No recent articles found :(": "Aucun article récent trouvé :(",

View File

@ -54,5 +54,5 @@
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"version": "1.0.3"
"version": "1.0.4"
}

View File

@ -257,7 +257,7 @@ $(() => {
})
$toggleDarkMode.on('mouseleave', () => {
toggleDesktopTopbarOverflow(true)
toggleDesktopTopbarOverflow(false)
})
$closeNotification.on('click', function () {
@ -275,7 +275,7 @@ $(() => {
$(document).on('keyup', (e) => {
if (e.key === 'Escape' && $search.hasClass('opened')) {
$closeSearch.click()
$closeSearch.trigger('click')
}
})