File tree Expand file tree Collapse file tree
packages/javascript/src/addons Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -141,8 +141,8 @@ function serializeScript(s: LoAFScript): Json {
141141 [ 'sourceCharPosition' , s . sourceCharPosition != null && s . sourceCharPosition >= 0 ? s . sourceCharPosition : null ] ,
142142 [ 'duration' , Math . round ( s . duration ) ] ,
143143 [ 'executionStart' , s . executionStart != null ? Math . round ( s . executionStart ) : null ] ,
144- [ 'forcedStyleAndLayoutDuration' , s . forcedStyleAndLayoutDuration ? Math . round ( s . forcedStyleAndLayoutDuration ) : null ] ,
145- [ 'pauseDuration' , s . pauseDuration ? Math . round ( s . pauseDuration ) : null ] ,
144+ [ 'forcedStyleAndLayoutDuration' , s . forcedStyleAndLayoutDuration != null ? Math . round ( s . forcedStyleAndLayoutDuration ) : null ] ,
145+ [ 'pauseDuration' , s . pauseDuration != null ? Math . round ( s . pauseDuration ) : null ] ,
146146 [ 'windowAttribution' , s . windowAttribution ] ,
147147 ] ) ;
148148}
You can’t perform that action at this time.
0 commit comments