getTimetoComplete Plugin Issue
Hi,
We have implemented the getTimetoComplete plugin using Adobe extension custom code.
s.usePlugins = true;
s.doPlugins = function() {
if(s && s.events && s.events.indexOf("event116") > -1) getTimeToComplete("start");
if(s && s.events && s.events.indexOf("event2") > -1) s.eVar140 = getTimeToComplete("stop");
};
The above code captures the value as 5 seconds, 10 seconds, etc as a multiple of 5. I would want the exact time in the report such as 3 seconds, 4 seconds, 6 seconds. How will I get it?