fixed an error when using pjax with google analytics #59
Reference in New Issue
Block a user
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
options.analytics()didn't have any param. soga("send", "pageview", {"page": options.url, "title": options.title})got an errorCannot read property 'url' of undefined.I fixed it by replaced with
ga("send", "pageview", {"page": location.pathname, "title": document.title}).@MoOx, Could you merge this and make a release? I have the same issue.
Better than nothing. Thanks !