Skip to content
Snippets Groups Projects

Added features for aggregated ligand interaction view and interactivity with heat map

Merged Ibrahim Roshan Kunnakkattu requested to merge PDBE-3362 into master
1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
+ 2
0
@@ -124,6 +124,7 @@ class Visualization {
}
private ligHeatmapMouseoverEventHandler(e: any) {
if (this.depiction === undefined) return;
const atomName = e.detail.name; // CustomEvent
const atom = this.depiction.atoms.filter(x => x.value >0 && x.name === atomName);
if (atom.length > 0) {
@@ -134,6 +135,7 @@ class Visualization {
}
private ligHeatmapMouseoutEventHandler() {
if (this.depiction === undefined) return;
this.depiction.atomMouseLeaveEventHandler(true);
}