Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web menu: Category mode #6

Merged
merged 34 commits into from
Aug 25, 2020
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1c256ae
disable bg animations
eromatiya Aug 22, 2020
bafd575
web-menu-categorized template
eromatiya Aug 22, 2020
a646640
populate categorized
eromatiya Aug 22, 2020
de2b850
sort items of each categories
eromatiya Aug 22, 2020
a5b728d
working searching
eromatiya Aug 23, 2020
ab03efa
li item: classes and ids
eromatiya Aug 23, 2020
96de78d
keyboard navigation
eromatiya Aug 23, 2020
5404dbb
responsive css for categories
eromatiya Aug 23, 2020
a9eefe3
add switch mode web menu
eromatiya Aug 23, 2020
2e644e9
add switch mode web menu
eromatiya Aug 23, 2020
8050b5a
switching basic
eromatiya Aug 23, 2020
8b18d32
working switching button
eromatiya Aug 23, 2020
97f9838
minor cleanup
eromatiya Aug 23, 2020
536d78f
more minor cleanup
eromatiya Aug 23, 2020
7c7a4fd
switching yeahhhh
eromatiya Aug 23, 2020
0ccabbd
cleanup and fixes
eromatiya Aug 23, 2020
7e9205f
category mode image
eromatiya Aug 23, 2020
3f053bd
switcher css
eromatiya Aug 23, 2020
7dce170
saving category mode
eromatiya Aug 23, 2020
e016fee
prevent populating li array once more
eromatiya Aug 24, 2020
0679ff0
init keynavi, scrolltotop on switch mode, focus reset()
eromatiya Aug 24, 2020
04d9ba3
keynavi more
eromatiya Aug 24, 2020
11149a3
left right navi
eromatiya Aug 24, 2020
50d1a20
remove comments
eromatiya Aug 24, 2020
2638286
css cleanup and webmenuscreen keyevents
eromatiya Aug 24, 2020
b64fec8
finalizing
eromatiya Aug 24, 2020
0fbf400
more cleanup, remove traces of development
eromatiya Aug 24, 2020
b9334a8
enable bg animations
eromatiya Aug 24, 2020
19f6100
Merge branch 'master' into webmenucategorized
eromatiya Aug 24, 2020
14d3675
focus searchbox on sort switch
eromatiya Aug 24, 2020
f5ab690
cleanup, better openURL() item
eromatiya Aug 25, 2020
b14cc55
refactor category generation
eromatiya Aug 25, 2020
3252008
cleanup
eromatiya Aug 25, 2020
72e146d
update scrot
eromatiya Aug 25, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
more minor cleanup
  • Loading branch information
eromatiya committed Aug 23, 2020
commit 536d78f71cd21e0ce2d7e6f05ddc802018e0cc3f
6 changes: 3 additions & 3 deletions js/places.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class Places {

_getListLIs() {
const ul = this._webMenuList;
const li = ul.getElementsByTagName('li');
for (let li of ul) {
this._webMenuCategoryLIsArr.push(li);
const lis = ul.getElementsByTagName('li');
for (let z = 0; z < lis.length; z++) {
this._webMenuCategoryLIsArr.push(lis[z]);
}
}

Expand Down