-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager
More file actions
38 lines (33 loc) · 968 Bytes
/
manager
File metadata and controls
38 lines (33 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
~ animations
- remove empty files
- calendar
- remove devconfig at end
- fix responsive of items
- import items
- export items
- load type from storage
- save selected-type in storage
- delete group => inside action menu
- delete item => inside action menu
- edit group => right click => action menu => edit
- edit item => right click => action menu => edit
- scroll to last item when group changed
this.itemsList.addEventListener('contextmenu', function (e) {
let target;
if (e.target.tagName.toLowerCase() === 'li') target = e.target;
if (e.target.parentNode.tagName.toLowerCase() === 'li') target = e.target.parentNode;
if (target) {
e.preventDefault();
}
});
--------------------------------
+ fix item time
+ add item
+ create groups for items
+ save items to local storage
+ failed, note list
+ type for creating items
+ color for each item type and status
+ rename tabs to groups
+ move events to a file
+ move ui controls to a file