We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now getFavoriteTerms() only looks through browsing records. Should be able to access multiple activity records.
getFavoriteTerms()
browsing
Proposing to set these on config or at call time.
The text was updated successfully, but these errors were encountered:
Could adjust which activities are used when counting taxonomy properties via config...
groucho.config = { 'taxonomyProperty': 'tags', 'trackExtent': 25, 'trackProperties': ['pageId', 'title', 'type', 'tags'], 'favoriteActivity': ['browsing', 'click'] };
Or that might be something that should be adjustable at call time...
var favActivity = ['browsing', 'click']; getFavoriteTerms('*', false, threshold, favActivity);
...also, clearly this function needs to change to an options object.
This would affect the "static" favorites, which would be stashed in different forms.
Sorry, something went wrong.
No branches or pull requests
Right now
getFavoriteTerms()
only looks throughbrowsing
records. Should be able to access multiple activity records.Proposing to set these on config or at call time.
The text was updated successfully, but these errors were encountered: