1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-04 18:00:44 +00:00

Slowed down the chooser's horizontal scale factor

This commit is contained in:
Jeremy Ruston 2012-03-16 15:11:04 +00:00
parent c483551ea3
commit 3d4e92568f

View File

@ -77,7 +77,7 @@ function hoverChooser(macroNode,x,y) {
// Scale the panel to fit
var scaleFactor = window.innerHeight/heightPanel;
// Scale up as we move right
var expandFactor = x > 50 ? (x/50) : 1;
var expandFactor = x > 50 ? ((x+150)/200) : 1;
// Set up the transform
var scale = scaleFactor * expandFactor,
translateX = x > 16 ? 0 : -(((16-x)/16) * widthPanel) / scale,