Release version 1.0.4
This commit is contained in:
parent
a6bf80fe14
commit
e241fb52b4
16
.editorconfig
Normal file
16
.editorconfig
Normal 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
@ -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é :(",
|
||||
|
@ -54,5 +54,5 @@
|
||||
"desktop": "assets/screenshot-desktop.jpg",
|
||||
"mobile": "assets/screenshot-mobile.jpg"
|
||||
},
|
||||
"version": "1.0.3"
|
||||
"version": "1.0.4"
|
||||
}
|
||||
|
@ -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')
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user