@@ -151,10 +151,10 @@ module.exports = function transitionAxes(gd, newLayout, transitionOpts, makeOnCo
151
151
// scale to individual points to counteract the scale of the trace
152
152
// as a whole:
153
153
. selectAll ( '.points' ) . selectAll ( '.point' )
154
- . call ( Drawing . setPointGroupScale , 1 , 1 )
154
+ . call ( Drawing . setPointGroupScale , 1 , 1 ) ;
155
155
156
156
subplot . plot . selectAll ( '.points' ) . selectAll ( 'g' )
157
- . each ( function ( ) {
157
+ . each ( function ( ) {
158
158
var el = d3 . select ( this ) ;
159
159
var existingTransform = el . attr ( 'transform' ) . match ( LAST_TRANSLATION_RE ) ;
160
160
el . attr ( 'transform' , existingTransform || '' ) ;
@@ -240,7 +240,7 @@ module.exports = function transitionAxes(gd, newLayout, transitionOpts, makeOnCo
240
240
. call ( Drawing . setPointGroupScale , 1 / xScaleFactor , 1 / yScaleFactor ) ;
241
241
242
242
subplot . plot . selectAll ( '.points' ) . selectAll ( 'g' )
243
- . each ( function ( ) {
243
+ . each ( function ( ) {
244
244
var el = d3 . select ( this ) ;
245
245
var text = el . select ( 'text' ) ;
246
246
var x = parseFloat ( text . attr ( 'x' ) ) ;
@@ -254,7 +254,7 @@ module.exports = function transitionAxes(gd, newLayout, transitionOpts, makeOnCo
254
254
'translate(' + ( - x ) + ',' + ( - y ) + ')' ,
255
255
] ;
256
256
257
- if ( existingTransform ) {
257
+ if ( existingTransform ) {
258
258
transforms . push ( existingTransform ) ;
259
259
}
260
260
0 commit comments