mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 08:15:00 -04:00
implement change requests
This commit is contained in:
parent
e77ded4859
commit
15252ee5c6
7 changed files with 35 additions and 7 deletions
|
@ -31,6 +31,8 @@ export class COperationList extends HTMLElement {
|
|||
this.isCloneable = isCloneable;
|
||||
this.icon = icon;
|
||||
|
||||
this.build();
|
||||
|
||||
window.addEventListener("operationadd", this.handleChange.bind(this));
|
||||
window.addEventListener("operationremove", this.handleChange.bind(this));
|
||||
window.addEventListener("favouritesupdate", this.handleChange.bind(this));
|
||||
|
@ -56,6 +58,8 @@ export class COperationList extends HTMLElement {
|
|||
|
||||
/**
|
||||
* Build c-operation-list
|
||||
*
|
||||
* @returns {HTMLElement}
|
||||
*/
|
||||
build() {
|
||||
const ul = document.createElement("ul");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue