Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add initiator type to Resource Timing data.
- Loading branch information
Showing
with
1 addition
and
2 deletions.
-
+1
−2
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, |
|
|