This commit is contained in:
Paul Irish 2016-08-30 23:33:28 -07:00 коммит произвёл GitHub
Родитель add0f03042
Коммит b526eb345b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -193,7 +193,7 @@ class TraceProcessor {
percentiles = [0.5, 0.75, 0.9, 0.99, 1];
}
// Find the main thread.
// Find the main thread via the first TracingStartedInPage event in the trace
const startEvent = trace.traceEvents.find(event => {
return event.name === 'TracingStartedInPage';
});