Browse Source

bugfix

v3_develop
Alex de Mulder 10 years ago
parent
commit
1a9b680cd6
4 changed files with 1921 additions and 1921 deletions
  1. +1914
    -1914
      dist/vis.js
  2. +1
    -1
      dist/vis.map
  3. +5
    -5
      dist/vis.min.js
  4. +1
    -1
      lib/timeline/Graph2d.js

+ 1914
- 1914
dist/vis.js
File diff suppressed because it is too large
View File


+ 1
- 1
dist/vis.map
File diff suppressed because it is too large
View File


+ 5
- 5
dist/vis.min.js
File diff suppressed because it is too large
View File


+ 1
- 1
lib/timeline/Graph2d.js View File

@ -190,7 +190,7 @@ Graph2d.prototype.getLegend = function(groupId, width, height) {
*/
Graph2d.prototype.isGroupVisible = function(groupId) {
if (this.linegraph.groups[groupId] !== undefined) {
return (this.linegraph.groups[groupId].visible && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true));
return (this.linegraph.groups[groupId].visible && (this.linegraph.options.groups.visibility[groupId] === undefined || this.linegraph.options.groups.visibility[groupId] == true));
}
else {
return false;

Loading…
Cancel
Save