Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2012-02-14 07:14:55 +0400
committerrobocoder <anthon.pang@gmail.com>2012-02-14 07:14:55 +0400
commitf9d954ffb96b265daed604c598660dde307f2ba3 (patch)
tree0f141df5b2a93e3797c21e6240bb25357a6661a7 /js
parent4328d4484f91aabdd9341937489edd44de68aa8c (diff)
refs #2930 - how long has this typo been here? not the fix though
git-svn-id: http://dev.piwik.org/svn/trunk@5834 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'js')
-rw-r--r--js/piwik.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/piwik.js b/js/piwik.js
index 8254def065..15b898f931 100644
--- a/js/piwik.js
+++ b/js/piwik.js
@@ -383,7 +383,7 @@ if (!this.JSON2) {
XDomainRequest, XMLHttpRequest, ActiveXObject, open, setRequestHeader, onreadystatechange, setRequestHeader, send, readyState, status,
getTime, getTimeAlias, setTime, toGMTString, getHours, getMinutes, getSeconds,
toLowerCase, charAt, indexOf, lastIndexOf, split, slice, toUpperCase,
- onLoad, src,
+ onload, src,
round, random,
exec,
res, width, height,
@@ -1147,7 +1147,7 @@ var
function getImage(request) {
var image = new Image(1, 1);
- image.onLoad = function () { };
+ image.onload = function () { };
image.src = configTrackerUrl + (configTrackerUrl.indexOf('?') < 0 ? '?' : '&') + request;
}