You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you:
hover and then click on the first aside,
then click to close that side (noting that it still has focus)
then hover and click on the second aside,
you will find that the second aside gets focus, but does not get class "front"
(see Mathbook.js, line 1204 $(this).toggleClass("front"); )
and so does not become big and in the middle.
Guess at the problem: when you hover on the second one, the focus is on the first,
so clicking changes focus but does not count as a click.
The text was updated successfully, but these errors were encountered:
On a page with multiple asides, such as
https://sites.ualberta.ca/~jsylvest/books/DLA/section-inverses-concepts.html
if you:
hover and then click on the first aside,
then click to close that side (noting that it still has focus)
then hover and click on the second aside,
you will find that the second aside gets focus, but does not get class "front"
(see Mathbook.js, line 1204 $(this).toggleClass("front"); )
and so does not become big and in the middle.
Guess at the problem: when you hover on the second one, the focus is on the first,
so clicking changes focus but does not count as a click.
The text was updated successfully, but these errors were encountered: