Sfoglia il codice sorgente

Merge branch 'popover-patch' of https://github.com/Ge0rg3/CyberChef into Ge0rg3-popover-patch

n1474335 6 anni fa
parent
commit
cde3eb2c39
1 ha cambiato i file con 11 aggiunte e 6 eliminazioni
  1. 11 6
      src/web/RecipeWaiter.mjs

+ 11 - 6
src/web/RecipeWaiter.mjs

@@ -124,16 +124,21 @@ class RecipeWaiter {
      * @param {event} evt
      * @param {event} evt
      */
      */
     opSortEnd(evt) {
     opSortEnd(evt) {
-        if (this.removeIntent) {
-            if (evt.item.parentNode.id === "rec-list") {
-                evt.item.remove();
-            }
+        if (this.removeIntent && evt.item.parentNode.id === "rec-list") {
+            evt.item.remove();
             return;
             return;
         }
         }
 
 
         // Reinitialise the popover on the original element in the ops list because for some reason it
         // Reinitialise the popover on the original element in the ops list because for some reason it
-        // gets destroyed and recreated.
-        this.manager.ops.enableOpsListPopovers(evt.clone);
+        // gets destroyed and recreated. If the clone isn't in the ops list, we use the original item instead.
+        let enableOpsElement;
+        if (evt.clone.parentNode && evt.clone.parentNode.classList.contains("op-list")) {
+            enableOpsElement = evt.clone;
+        } else {
+            enableOpsElement = evt.item;
+            $(evt.item).attr("data-toggle", "popover");
+        }
+        this.manager.ops.enableOpsListPopovers(enableOpsElement);
 
 
         if (evt.item.parentNode.id !== "rec-list") {
         if (evt.item.parentNode.id !== "rec-list") {
             return;
             return;