We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3bbc8e commit 153aeffCopy full SHA for 153aeff
1 file changed
src/graph/overlayManager.js
@@ -5,7 +5,7 @@
5
* that visually attach to nodes/edges (e.g., note-count badges, "unseen/visited" badges).
6
*/
7
8
-import { printDebug } from "../utils/debug.js";
+// import { printDebug } from "../utils/debug.js";
9
10
//// Dependencies (soft): tokens for sizes/offsets //////////////////////////////////
11
@@ -375,7 +375,7 @@ export function attach(cy) {
375
const n = evt.target;
376
if (!n || !n.isNode()) return;
377
// Kill any queued animations and keep it inert, but do not lock:
378
- try { n.stop(true, true); n.ungrabify(); n.selectify(false); } catch {}
+ try { n.stop(true, true); n.ungrabify(); n.selectify(false); } catch { /* noop */ }
379
};
380
381
cy.scratch('_overlayManager_attached', true);
0 commit comments