mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 15:25:01 -04:00
[#181] remove obsolete func, some debugging > updating todos with observations
This commit is contained in:
parent
ec45d95244
commit
ccc5095763
2 changed files with 6 additions and 17 deletions
|
@ -227,13 +227,6 @@ class OperationsWaiter {
|
|||
$(document.querySelectorAll(".op-list .operation")).popover("disable");
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable popovers on all op-list list items
|
||||
*/
|
||||
enableOpsListPopovers(){
|
||||
$(document.querySelectorAll(".op-list .operation")).popover("enable");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Handler for operation doubleclick events.
|
||||
|
@ -243,10 +236,8 @@ class OperationsWaiter {
|
|||
*/
|
||||
operationDblclick(e) {
|
||||
const li = e.target;
|
||||
|
||||
e.target.classList.add('selected');
|
||||
|
||||
this.manager.recipe.addOperation(li.getAttribute('data-name'));
|
||||
e.target.classList.add("selected");
|
||||
this.manager.recipe.addOperation(li.getAttribute("data-name"));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue