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:
authorBeezyT <timo@ezdesign.de>2012-09-23 12:13:25 +0400
committerBeezyT <timo@ezdesign.de>2012-09-23 12:13:25 +0400
commit7742dd93300ec658f5666fb0597dfee5b9b8546c (patch)
tree5de972f400b2f8b2804d35c24f54d21a89b71522 /plugins/Transitions
parent6aace369f100ce0e13e9f68eb65120f38a21b7f0 (diff)
refs #3332 fixing JS error in merged file
git-svn-id: http://dev.piwik.org/svn/trunk@7043 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Transitions')
-rw-r--r--plugins/Transitions/templates/transitions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Transitions/templates/transitions.js b/plugins/Transitions/templates/transitions.js
index 1b452775a7..75d299297f 100644
--- a/plugins/Transitions/templates/transitions.js
+++ b/plugins/Transitions/templates/transitions.js
@@ -888,7 +888,7 @@ Piwik_Transitions_Canvas.prototype.renderLoops = function(share) {
this.context.lineTo(point7.x, point7.y);
// line to lower left connection to the center box
- var point8 = {x: point1.x, y: point1.y + + curveHeight};
+ var point8 = {x: point1.x, y: point1.y + curveHeight};
cpLeftX += 30;
var cp7 = {x: cpLeftX, y: point7.y};
var cp8 = {x: cpLeftX, y: point8.y};