Browse Source

Fixed a regression: Timeline/Graph2d constructor throwing an exception when no options are provided via the constructor

codeClimate
jos 8 years ago
parent
commit
1d49599bc9
2 changed files with 10 additions and 1 deletions
  1. +10
    -0
      HISTORY.md
  2. +0
    -1
      lib/timeline/Core.js

+ 10
- 0
HISTORY.md View File

@ -4,6 +4,16 @@ http://visjs.org
## not yet released, version 4.13.1-SNAPSHOT
### Timeline
- Fixed a regression: Timeline/Graph2d constructor throwing an exception when
no options are provided via the constructor.
### Graph2d
- Fixed a regression: Timeline/Graph2d constructor throwing an exception when
no options are provided via the constructor.
### Graph3d
- Fixed #1615: implemented new option `dotSizeRatio`.

+ 0
- 1
lib/timeline/Core.js View File

@ -29,7 +29,6 @@ Emitter(Core.prototype);
*/
Core.prototype._create = function (container) {
this.dom = {};
this.options = {};
this.dom.container = container;

Loading…
Cancel
Save