|
@ -1,6 +1,6 @@
|
1
|
1
|
// The MIT License (MIT)
|
2
|
2
|
//
|
3
|
|
// Copyright (c) <year> <copyright holders>
|
|
3
|
// Copyright (c) 2013 Bryan Allred <bryan.allred@gmail.com>
|
4
|
4
|
//
|
5
|
5
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
6
|
// of this software and associated documentation files (the "Software"), to deal
|
|
@ -58,8 +58,9 @@ String.prototype.endsWith = function (search) {
|
58
|
58
|
var settings = {
|
59
|
59
|
attributes: [],
|
60
|
60
|
assignTo: ["a", "input[type='submit']"],
|
61
|
|
url: null,
|
62
|
|
client: null
|
|
61
|
client: null,
|
|
62
|
exclude: ".analytics-exclude",
|
|
63
|
url: null
|
63
|
64
|
};
|
64
|
65
|
|
65
|
66
|
// Walk the tree of a given node.
|
|
@ -97,7 +98,7 @@ String.prototype.endsWith = function (search) {
|
97
|
98
|
// Locally scope this variable.
|
98
|
99
|
$this = $(this);
|
99
|
100
|
|
100
|
|
if (settings.url && !$this.is(".analytics-captured")) {
|
|
101
|
if (settings.url && !$this.is(".analytics-captured") && !$this.is(settings.exclude)) {
|
101
|
102
|
// // We prevent the default action to allow the background call to succeed.
|
102
|
103
|
// e.preventDefault();
|
103
|
104
|
|