mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-07 06:57:12 -04:00
rename functions to better adhere to conventions
This commit is contained in:
parent
ec259dd793
commit
6a1514db30
1 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue