rename functions to better adhere to conventions

This commit is contained in:
Robin Scholtes 2023-05-12 17:34:39 +12:00
parent ec259dd793
commit 6a1514db30

View file

@ -184,9 +184,9 @@ class OperationsWaiter {
*/
opListCreate(e) {
if (window.innerWidth < this.app.breakpoint) {
this.mobileOpListCreate(e);
this.createMobileOpList(e);
} else {
this.desktopOpListCreate(e);
this.createDesktopOpList(e);
}
}
@ -196,7 +196,7 @@ class OperationsWaiter {
*
* @param {event} e
*/
desktopOpListCreate(e) {
createDesktopOpList(e) {
this.manager.recipe.createSortableSeedList(e.target);
this.enableOpPopover(e.target);
}
@ -207,7 +207,7 @@ class OperationsWaiter {
*
* @param {event} e
*/
mobileOpListCreate(e) {
createMobileOpList(e) {
this.manager.recipe.createSortableSeedList(e.target, false);
this.disableOpsListPopovers();
}