Skip to content

Commit ff524f3

Browse files
author
fabriziofenix
committed
Merge remote-tracking branch 'origin/develop'
2 parents cea02f7 + 0c868de commit ff524f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/js/adapters/d3s_jqwidgets.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ define([
267267

268268

269269
D3S_JQWidgets_Adapter.prototype._getVisualizationNumber = function (object) {
270-
return object.toFixed( this.numberVisualization) ;
270+
return (object && object!= null )?
271+
object.toFixed( this.numberVisualization) :null;
271272
};
272273

273274

0 commit comments

Comments
 (0)