Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: tools/turbolizer/turbo-visualizer.js

Issue 2230783005: [turbolizer] Use a 300ms transition for expanding/collapsing panes, not 1000ms. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@t-p2-base
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/turbolizer/turbo-visualizer.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/turbolizer/turbo-visualizer.js
diff --git a/tools/turbolizer/turbo-visualizer.js b/tools/turbolizer/turbo-visualizer.js
index f0cb9e25f5daab2d43ee1917d0d32d6724b00735..b8d776260596f225fa7238c329ab8cdad631c013 100644
--- a/tools/turbolizer/turbo-visualizer.js
+++ b/tools/turbolizer/turbo-visualizer.js
@@ -142,13 +142,13 @@ document.onload = (function(d3){
toggleSourceExpanded(true);
setTimeout(function(){
g.fitGraphViewToWindow();
- }, 1000);
+ }, 300);
});
d3.select("#disassembly-collapse").on("click", function(){
toggleDisassemblyExpanded();
setTimeout(function(){
g.fitGraphViewToWindow();
- }, 1000);
+ }, 300);
});
window.onresize = function(){
fitPanesToParents();
« no previous file with comments | « tools/turbolizer/turbo-visualizer.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698