Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Hit Callback não funcionando corretamente #10

Closed
BiancaK3 opened this issue Jan 4, 2018 · 2 comments
Closed

Hit Callback não funcionando corretamente #10

BiancaK3 opened this issue Jan 4, 2018 · 2 comments

Comments

@BiancaK3
Copy link
Contributor

BiancaK3 commented Jan 4, 2018

A função atual é:

function() {
return function(){
analyticsHelper.internal._sentPageview = true;
while(analyticsHelper.options.eventQueue.length){
analyticsHelper.event.apply(analyticsHelper, analyticsHelper.options.eventQueue.shift());
}
};
}

E a função ajustada pelo Paulo é

function() {
return function(){
analyticsHelper.internal._sentPageview = true;
while(analyticsHelper.internal._eventQueue.length){
analyticsHelper.event.apply(analyticsHelper, analyticsHelper.internal._eventQueue.shift());
}
};
}

@paulobrumatti
Copy link
Collaborator

Modificado e corrigido no commit d390934, precisamos atualizar a documentação

@paulobrumatti
Copy link
Collaborator

Corrigido e normalizado para sem _.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants