am ed677d7a
: update analytics event for searches to make query case-insensitive and save the URL instead of doc title.
* commit 'ed677d7a0e3491824584391d7255d113696bad85': update analytics event for searches to make query case-insensitive and save the URL instead of doc title.
This commit is contained in:
commit
d7dbaf5c14
1 changed files with 4 additions and 4 deletions
|
@ -1728,8 +1728,8 @@ var gDocsListLength = 0;
|
|||
|
||||
function onSuggestionClick(link) {
|
||||
// When user clicks a suggested document, track it
|
||||
ga('send', 'event', 'Suggestion Click', 'clicked: ' + $(link).text(),
|
||||
'from: ' + $("#search_autocomplete").val());
|
||||
ga('send', 'event', 'Suggestion Click', 'clicked: ' + $(link).attr('href'),
|
||||
'query: ' + $("#search_autocomplete").val().toLowerCase());
|
||||
}
|
||||
|
||||
function set_item_selected($li, selected)
|
||||
|
@ -2702,8 +2702,8 @@ function addResultClickListeners() {
|
|||
$("#searchResults a.gs-title").each(function(index, link) {
|
||||
// When user clicks enter for Google search results, track it
|
||||
$(link).click(function() {
|
||||
ga('send', 'event', 'Google Click', 'clicked: ' + $(this).text(),
|
||||
'from: ' + $("#search_autocomplete").val());
|
||||
ga('send', 'event', 'Google Click', 'clicked: ' + $(this).attr('href'),
|
||||
'query: ' + $("#search_autocomplete").val().toLowerCase());
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue