| Index: tools/turbolizer/turbo-visualizer.js
|
| diff --git a/tools/turbolizer/turbo-visualizer.js b/tools/turbolizer/turbo-visualizer.js
|
| index b8d776260596f225fa7238c329ab8cdad631c013..280caf01db50571fc09c4e96131de78d88994c66 100644
|
| --- a/tools/turbolizer/turbo-visualizer.js
|
| +++ b/tools/turbolizer/turbo-visualizer.js
|
| @@ -188,13 +188,6 @@ document.onload = (function(d3){
|
| }
|
| }
|
|
|
| - var eventMenu = document.getElementById('event-selector');
|
| - eventMenu.innerHTML = '';
|
| - for (var event in jsonObj.eventCounts) {
|
| - var optionElement = document.createElement("option");
|
| - optionElement.text = event;
|
| - eventMenu.add(optionElement, null);
|
| - }
|
| disassemblyView.initializePerfProfile(jsonObj.eventCounts);
|
| disassemblyView.show(disassemblyPhase.data, null);
|
|
|
| @@ -216,10 +209,6 @@ document.onload = (function(d3){
|
| displayPhase(jsonObj.phases[selectMenu.selectedIndex]);
|
| }
|
|
|
| - eventMenu.onchange = function(item) {
|
| - disassemblyView.show(disassemblyView.data, null);
|
| - }
|
| -
|
| fitPanesToParents();
|
|
|
| d3.select("#search-input").attr("value", window.sessionStorage.getItem("lastSearch") || "");
|
|
|