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
diff options
context:
space:
mode:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-21 03:43:55 +0400
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-21 03:43:55 +0400
commita010d5f1e2524c808892bea22b7d1e4c12cb8e80 (patch)
tree13c84cbe5fc0951ce29516890f3976e0091558d8 /plugins/Live
parent49aef6892c17a020cb3f41ea35be8a32a586ec22 (diff)
Replace "new Object()" with equivalent "{}"; also fix "new Object"
(without constructor syntax).
Diffstat (limited to 'plugins/Live')
-rw-r--r--plugins/Live/templates/scripts/spy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/templates/scripts/spy.js b/plugins/Live/templates/scripts/spy.js
index ac296ab02f..c2fb38863c 100644
--- a/plugins/Live/templates/scripts/spy.js
+++ b/plugins/Live/templates/scripts/spy.js
@@ -117,7 +117,7 @@ $.fn.spy = function(settings) {
return this.each(function() {
var e = this;
var lr = ''; // last ajax return
- var parameters = new Object;
+ var parameters = {};
spy.ajaxTimer = window.setInterval(function() {
if (spyRunning && (!spy.parsing)) {
var customParameterValue = o.customParameterValueCallback.call();