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
This is a very interesting project! I was pleased to put a star on the github.
Especially like the built-in dark theme and no jquery dependency.
I used halfmoon on one temporary site for a contest. It turned out quite well.
However, I see two big drawbacks that will prevent me from using this in persistent projects.
After loading the page on the computer, vertical scrolling with the keys does not work. It is necessary to set the focus with the mouse on the content, only then scrolling will work.
On Chrome mobile, the top bar of the browser is not hidden when scrolling down. It wastes space on the small screen and is bad.
I haven't found how to fix this myself. Maybe there is a solution?
The text was updated successfully, but these errors were encountered:
This has been brought up before. The way that pages are structured is a bit weird (basically the content wrapper scrolls, not the body of the DOM), but I have that on the roadmap and this should be fixed in the next update.
I tried setting focus to .content-wrapper to simulate a mouse click get focus event: (sorry, it was not possible to insert this code normally)
But this only worked in Firefox. This live hack does not work in Chromium and Falcon (web-kit based browser).
(upd)
And (suddenly!) It works in IE11. )))
(upd2)
Simulated mouse click doesn't work anywhere. let event = new Event("click"); elem.dispatchEvent(event);
This is a very interesting project! I was pleased to put a star on the github.
Especially like the built-in dark theme and no jquery dependency.
I used halfmoon on one temporary site for a contest. It turned out quite well.
However, I see two big drawbacks that will prevent me from using this in persistent projects.
I haven't found how to fix this myself. Maybe there is a solution?
The text was updated successfully, but these errors were encountered: