@@ -175,8 +175,8 @@ export default function plotComponentFactory(Plotly) {
175
175
}
176
176
}
177
177
178
- syncWindowResize ( props , invoke ) {
179
- props = props || this . props ;
178
+ syncWindowResize ( propsIn , invoke ) {
179
+ const props = propsIn || this . props ;
180
180
if ( ! isBrowser ) return ;
181
181
182
182
if ( props . fit && ! this . fitHandler ) {
@@ -211,9 +211,9 @@ export default function plotComponentFactory(Plotly) {
211
211
}
212
212
213
213
// Attach and remove event handlers as they're added or removed from props:
214
- syncEventHandlers ( props ) {
214
+ syncEventHandlers ( propsIn ) {
215
215
// Allow use of nextProps if passed explicitly:
216
- props = props || this . props ;
216
+ const props = propsIn || this . props ;
217
217
218
218
for ( let i = 0 ; i < eventNames . length ; i ++ ) {
219
219
const eventName = eventNames [ i ] ;
@@ -244,9 +244,9 @@ export default function plotComponentFactory(Plotly) {
244
244
return objectAssign ( { } , layout , this . getSize ( layout ) ) ;
245
245
}
246
246
247
- getSize ( layout ) {
247
+ getSize ( layoutIn ) {
248
248
let rect ;
249
- layout = layout || this . props . layout ;
249
+ const layout = layoutIn || this . props . layout ;
250
250
const layoutWidth = layout ? layout . width : null ;
251
251
const layoutHeight = layout ? layout . height : null ;
252
252
const hasWidth = isNumeric ( layoutWidth ) ;
0 commit comments