Skip to content

Commit

Permalink
Fixing problem with movie going away even after being moved. Closes #604
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsielicki committed Mar 18, 2016
1 parent af6b157 commit 0acf847
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ define("slycat-parameter-image-scatterplot", ["slycat-server-root", "d3", "URI",
self.state = "moving";
sourceEventTarget = d3.select(d3.event.sourceEvent.target);

if (sourceEventTarget.classed("image-frame") || sourceEventTarget.classed("image") || sourceEventTarget.classed("bootstrap-styles")) {
if ( sourceEventTarget.classed("image-frame") || sourceEventTarget.classed("image") || sourceEventTarget.classed("bootstrap-styles") || d3.event.sourceEvent.target.nodeName == "VIDEO") {
frame = d3.select(this);

if (frame.classed("hover-image")) {
Expand Down

0 comments on commit 0acf847

Please sign in to comment.