Skip to content

Commit

Permalink
Release version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiesigner committed May 24, 2021
1 parent a6bf80f commit e241fb5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion assets/js/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -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é :(",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"version": "1.0.3"
"version": "1.0.4"
}
4 changes: 2 additions & 2 deletions src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ $(() => {
})

$toggleDarkMode.on('mouseleave', () => {
toggleDesktopTopbarOverflow(true)
toggleDesktopTopbarOverflow(false)
})

$closeNotification.on('click', function () {
Expand All @@ -275,7 +275,7 @@ $(() => {

$(document).on('keyup', (e) => {
if (e.key === 'Escape' && $search.hasClass('opened')) {
$closeSearch.click()
$closeSearch.trigger('click')
}
})

Expand Down

0 comments on commit e241fb5

Please sign in to comment.