From 13932160878192717a7ff4ad8a285e913562ae2b Mon Sep 17 00:00:00 2001 From: Phil Booth Date: Thu, 13 Mar 2014 14:17:36 +0000 Subject: [PATCH] Add initiator type to Resource Timing data. --- plugins/restiming.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/restiming.js b/plugins/restiming.js index 135c59702..c9df003af 100644 --- a/plugins/restiming.js +++ b/plugins/restiming.js @@ -40,8 +40,7 @@ impl = { for(i = 0; i < r.length; ++i) { data.restiming[i] = { rt_name: r[i].name, - // reinstate this if entryType is ever something other than "resource" - //rt_type: r[i].entryType, + rt_type: r[i].initiatorType, rt_st: r[i].startTime, rt_dur: r[i].duration, rt_fet_st: r[i].fetchStart,