dondi / GRNsight

Web app and service for modeling and visualizing gene regulatory networks.
http://dondi.github.io/GRNsight
BSD 3-Clause "New" or "Revised" License
17 stars 8 forks source link

Fixing PR #1112 to Restrict D-pad #1114

Closed ceciliazaragoza closed 2 months ago

ceciliazaragoza commented 2 months ago

After going through PR checklist for PR #1112 , realized D-pad was not being restricted properly. I had to adjust one line of the code in move function because I did not call the viewportBoundsMoveDrag function and instead just had an if statement that said if ((graphZoom, moveWidth, moveHeight)). Updated code to if (viewportBoundsMoveDrag(graphZoom, moveWidth, moveHeight)) and now D-pad is being restricted as expected.