summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/pgfplots
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/latex/pgfplots')
-rw-r--r--Master/texmf-dist/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex b/Master/texmf-dist/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex
index 5fce5642009..fb0e9a0812c 100644
--- a/Master/texmf-dist/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex
+++ b/Master/texmf-dist/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex
@@ -441,11 +441,11 @@ var pgfplotsAxisRegistry = new Object();
pgfplotsAxisRegistry["rectangle"] = function( axisAnnotObj ) { return new PGFPlotsAxis( axisAnnotObj ); }
pgfplotsAxisRegistry["ternary"] = function( axisAnnotObj ) { return new PGFPlotsTernaryAxis( axisAnnotObj ); }
-function PGFPlotsClassExtend( child, super )
+function PGFPlotsClassExtend( child, superClass )
{
- for (var property in super.prototype) {
+ for (var property in superClass.prototype) {
if (typeof child.prototype[property] == "undefined")
- child.prototype[property] = super.prototype[property];
+ child.prototype[property] = superClass.prototype[property];
}
return child;
}