Skip to content

Commit

Permalink
Fix Scrubbable selection glitches
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Apr 30, 2021
1 parent 111c18e commit cf8f6c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PlutoUI"
uuid = "7f904dfe-b85e-4ff6-b463-dae2292396a8"
authors = ["Fons van der Plas <[email protected]>"]
version = "0.7.7"
version = "0.7.8"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
1 change: 1 addition & 0 deletions src/Scrubbable.jl
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ begin
}
const onpointerdown = (e) => {
window.getSelection().empty()
old_x = e.clientX
old_index = current_index
window.addEventListener("pointermove", onScrub)
Expand Down

2 comments on commit cf8f6c0

@fonsp
Copy link
Member Author

@fonsp fonsp commented on cf8f6c0 Apr 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/35738

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.8 -m "<description of version>" cf8f6c05d52a00cbbc3c2880ac4452f877099c1a
git push origin v0.7.8

Please sign in to comment.