mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Improve scroll into view
- if a node is behind scrollbar, it is not scrolled into view - jQuery `.width()` & `.width()` actually includes the scroll bar. - using native `clientWidth` and `clientHeight` fixes this
This commit is contained in:
parent
c0612e6193
commit
cf1424976f
@ -5621,7 +5621,7 @@ RED.view = (function() {
|
||||
node.dirty = true;
|
||||
RED.workspaces.show(node.z);
|
||||
|
||||
var screenSize = [chart.width()/scaleFactor,chart.height()/scaleFactor];
|
||||
var screenSize = [chart[0].clientWidth/scaleFactor,chart[0].clientHeight/scaleFactor];
|
||||
var scrollPos = [chart.scrollLeft()/scaleFactor,chart.scrollTop()/scaleFactor];
|
||||
var cx = node.x;
|
||||
var cy = node.y;
|
||||
|
Loading…
Reference in New Issue
Block a user