Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
pdbe
web-components
pdb-ligand-env
Commits
c17dad29
Commit
c17dad29
authored
Oct 27, 2020
by
Lukas Pravda
Browse files
get rid of event errors when scene not ready
parent
4c7b3d06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
src/plugin/manager.ts
src/plugin/manager.ts
+4
-5
No files found.
src/plugin/manager.ts
View file @
c17dad29
...
...
@@ -110,9 +110,8 @@ class Visualization {
return
;
}
});
this
.
links
.
attr
(
'
opacity
'
,
1
);
this
.
nodes
.
attr
(
'
opacity
'
,
1
);
this
.
links
?.
attr
(
'
opacity
'
,
1
);
this
.
nodes
?.
attr
(
'
opacity
'
,
1
);
}
...
...
@@ -145,8 +144,8 @@ class Visualization {
this
.
fireExternalNullEvent
(
Config
.
interactionMouseoutEvent
);
}
this
.
links
.
attr
(
'
opacity
'
,
1
);
this
.
nodes
.
attr
(
'
opacity
'
,
1
);
this
.
links
?
.
attr
(
'
opacity
'
,
1
);
this
.
nodes
?
.
attr
(
'
opacity
'
,
1
);
}
private
dragHandler
=
d3
.
drag
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment