mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 07:21:02 -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) {
|
opListCreate(e) {
|
||||||
if (window.innerWidth < this.app.breakpoint) {
|
if (window.innerWidth < this.app.breakpoint) {
|
||||||
this.mobileOpListCreate(e);
|
this.createMobileOpList(e);
|
||||||
} else {
|
} else {
|
||||||
this.desktopOpListCreate(e);
|
this.createDesktopOpList(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -196,7 +196,7 @@ class OperationsWaiter {
|
||||||
*
|
*
|
||||||
* @param {event} e
|
* @param {event} e
|
||||||
*/
|
*/
|
||||||
desktopOpListCreate(e) {
|
createDesktopOpList(e) {
|
||||||
this.manager.recipe.createSortableSeedList(e.target);
|
this.manager.recipe.createSortableSeedList(e.target);
|
||||||
this.enableOpPopover(e.target);
|
this.enableOpPopover(e.target);
|
||||||
}
|
}
|
||||||
|
@ -207,7 +207,7 @@ class OperationsWaiter {
|
||||||
*
|
*
|
||||||
* @param {event} e
|
* @param {event} e
|
||||||
*/
|
*/
|
||||||
mobileOpListCreate(e) {
|
createMobileOpList(e) {
|
||||||
this.manager.recipe.createSortableSeedList(e.target, false);
|
this.manager.recipe.createSortableSeedList(e.target, false);
|
||||||
this.disableOpsListPopovers();
|
this.disableOpsListPopovers();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue