From 13f59a2ae31562983a7ca6b4486c8d5182ea9076 Mon Sep 17 00:00:00 2001 From: uglycoyote Date: Tue, 4 Apr 2017 12:59:24 -0700 Subject: [PATCH] Removing usage of g.matrix, since g (group) does not have a member called matrix. (the test code would print undefined) --- types/snapsvg/test/3.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/snapsvg/test/3.ts b/types/snapsvg/test/3.ts index d9195dc3d4..70381001ca 100644 --- a/types/snapsvg/test/3.ts +++ b/types/snapsvg/test/3.ts @@ -337,6 +337,6 @@ window.onload=()=>{ var myInvertedMatrix = myMatrix.invert(); g.animate({ transform: myMatrix },3000, mina.bounce, function() { g.animate({ transform: myInvertedMatrix }, 3000, mina.bounce) } ); - console.log( g.transform(), g.matrix, myMatrix.split() ); + console.log( g.transform(), myMatrix.split() ); } }