Browse Source

Fixed bug in endsWith() function

bmallred 12 years ago
parent
commit
80734cb0d0
2 changed files with 3 additions and 2 deletions
  1. 2 1
      example.html
  2. 1 1
      jquery-analytics.js

+ 2 - 1
example.html

@ -1,6 +1,7 @@
1
<!doctype html>
1 2
<html>
2 3
<head>
3
4
	<title>jQuery Analytics Example</title>
4 5
</head>
5 6
<body>
6 7
	<h1>jQuery Analytics</h1>

+ 1 - 1
jquery-analytics.js

@ -31,7 +31,7 @@ String.prototype.startsWith = function (search) {
31 31
// @param {String} search
32 32
// @return {Boolean} a value indicating whether the string ends with the search criteria
33 33
String.prototype.endsWith = function (search) {
34
    return original.lastIndexOf(search) == original.length - search.length;
34
    return this.lastIndexOf(search) == this.length - search.length;
35 35
};
36 36
37 37
(function ($) {