From eabfeb9502e404d149e94772d5d36f9627c7c225 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Sat, 21 May 2016 22:11:10 +0100 Subject: [PATCH] Slow down the tray slide animation slightly --- editor/js/ui/tray.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/js/ui/tray.js b/editor/js/ui/tray.js index 30c8c2e2d..a826067ab 100644 --- a/editor/js/ui/tray.js +++ b/editor/js/ui/tray.js @@ -122,7 +122,7 @@ RED.tray = (function() { el.css({ right: -(el.width()+10)+"px", - transition: "right 0.2s ease" + transition: "right 0.25s ease" }); $("#workspace").scrollLeft(0); handleWindowResize(); @@ -200,7 +200,7 @@ RED.tray = (function() { setTimeout(function() { oldTray.tray.detach(); showTray(options); - },200) + },250) } else { showTray(options); } @@ -231,7 +231,7 @@ RED.tray = (function() { if (done) { done(); } - },200) + },250) if (stack.length === 0) { $("#header-shade").hide(); $("#editor-shade").hide();