From 4e668f51370a93cc9dc26b1a11a949b50493b353 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 8 Jan 2016 00:02:17 +0000 Subject: pgfplots (7jan16) git-svn-id: svn://tug.org/texlive/trunk@39303 c570f23f-e606-0410-a88d-b1316a301751 --- .../tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Master/texmf-dist/tex/latex/pgfplots') 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; } -- cgit v1.2.3