First almost fully functioning MVP.
Lacking: - Seasons cannot be added/edited - image upload - layout recipe/adding
This commit is contained in:
8
src/lib/components/do_on_key.js
Normal file
8
src/lib/components/do_on_key.js
Normal file
@@ -0,0 +1,8 @@
|
||||
export function do_on_key(event, key, needsctrl, fn){
|
||||
if(event.key == key){
|
||||
if(needsctrl && !event.ctrlKey){
|
||||
return
|
||||
}
|
||||
fn()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user