Skip to content

Commit

Permalink
see changelog v11.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanBrewer317 committed Oct 22, 2024
1 parent 1def8d1 commit 63d5b00
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [11.0.5] - 2024-10-21

### Fixed

- Correctly scroll to top on navigation.

## [11.0.4] - 2024-10-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "arctic"
version = "11.0.4"
version = "11.0.5"

# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
Expand Down
1 change: 1 addition & 0 deletions src/arctic/build.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ async function go_to(url, loader, back) {
if (!response.ok) return;
const html = await response.text();
$app.innerHTML = html;
document.body.scrollIntoView();
}
document.addEventListener('click', async function(e) {
const a = find_a(e.target);
Expand Down

0 comments on commit 63d5b00

Please sign in to comment.