Browse Source

Released version 3.9.0

v3_develop v3.9.0
jos 9 years ago
parent
commit
c56134cd91
8 changed files with 27005 additions and 27000 deletions
  1. +4
    -4
      HISTORY.md
  2. +1
    -1
      bower.json
  3. +26975
    -26975
      dist/vis.js
  4. +1
    -1
      dist/vis.map
  5. +1
    -1
      dist/vis.min.css
  6. +15
    -15
      dist/vis.min.js
  7. +7
    -2
      examples/network/36_HTML_in_Nodes.html
  8. +1
    -1
      package.json

+ 4
- 4
HISTORY.md View File

@ -2,12 +2,12 @@
http://visjs.org
## not yet released, version 3.8.1-SNAPSHOT
## 2015-01-16, version 3.9.0
### Network
- reverted change in image class, fixed bug #552
- improved (not neccesarily fixed) the fontFill offset between different browsers. #365
- Reverted change in image class, fixed bug #552
- Improved (not neccesarily fixed) the fontFill offset between different browsers. #365
- Fixed dashed lines on firefox on Unix systems
- Altered the Manipulation Mixin to be succesfully destroyed from memory when calling destroy();
- Improved drawing of arrowheads on smooth curves. #349
@ -27,7 +27,7 @@ http://visjs.org
- Added byUser flag to options of the rangechange and rangechanged event.
## 20145-01-09, version 3.8.0
## 2015-01-09, version 3.8.0
### General

+ 1
- 1
bower.json View File

@ -1,6 +1,6 @@
{
"name": "vis",
"version": "3.8.1-SNAPSHOT",
"version": "3.9.0",
"main": ["dist/vis.min.js", "dist/vis.min.css"],
"description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/",

+ 26975
- 26975
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


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


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


+ 7
- 2
examples/network/36_HTML_in_Nodes.html View File

@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<title>Network | Images</title>
<title>Network | HTML in nodex</title>
<style type="text/css">
body {
@ -74,7 +74,12 @@
</head>
<body onload="draw()">
<p>
This example demonstrates showing custom HTML in Nodes, by using an SVG image.
</p>
<p style="color: red;">
WARNING: this is currently not supported by all browsers.
</p>
<div id="mynetwork"></div>
</body>
</html>

+ 1
- 1
package.json View File

@ -1,6 +1,6 @@
{
"name": "vis",
"version": "3.8.1-SNAPSHOT",
"version": "3.9.0",
"description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/",
"repository": {

Loading…
Cancel
Save