Browse Source

Updated version number to 3.3.1-SNAPSHOT. Fixed moment.js urls in some examples. Fixed position issue with close button of the Network manipulation menu

v3_develop
jos 10 years ago
parent
commit
8b1a90cc9f
11 changed files with 40 additions and 20 deletions
  1. +18
    -2
      HISTORY.md
  2. +1
    -1
      bower.json
  3. +7
    -5
      dist/vis.css
  4. +1
    -1
      dist/vis.js
  5. +1
    -1
      dist/vis.min.css
  6. +1
    -1
      dist/vis.min.js
  7. +1
    -1
      examples/graph2d/13_localization.html
  8. +1
    -1
      examples/network/31_localization.html
  9. +1
    -1
      examples/timeline/19_localization.html
  10. +7
    -5
      lib/network/css/network-manipulation.css
  11. +1
    -1
      package.json

+ 18
- 2
HISTORY.md View File

@ -2,6 +2,22 @@
http://visjs.org
## not yet released, version 3.3.1
### Graph2d
- Fixed moment.js url in localization example.
### Network
- Fixed some positioning issues with the close button of the manipulation menu.
### Timeline
- Fixed moment.js url in localization example.
## 2014-08-29, version 3.3.0
### Timeline
@ -39,7 +55,7 @@ http://visjs.org
- Fixed bug where loading hierarchical data after initialization crashed network.
- Added different layout method to the hierarchical system based on the direction of the edges.
### Graph2D
### Graph2d
- Implemented option `handleOverlap` to support overlap, sideBySide and stack.
- Implemented two examples showing the `handleOverlap` functionality.
@ -58,7 +74,7 @@ http://visjs.org
- Refactored Timeline and Graph2d to use the same core.
### Graph2D
### Graph2d
- Added `visible` property to the groups.
- Added `getLegend()` method.

+ 1
- 1
bower.json View File

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

+ 7
- 5
dist/vis.css View File

@ -555,14 +555,12 @@ div.network-manipulation-editMode {
div.network-manipulation-closeDiv {
position:absolute;
left: 0;
right: 0;
top: 0;
width: 30px;
height: 30px;
margin-top: 3px;
margin-left: 590px;
background-position: 0px 0px;
background-position: 20px 3px;
background-repeat: no-repeat;
background-image: url("img/network/cross.png");
cursor: pointer;
@ -574,6 +572,10 @@ div.network-manipulation-closeDiv {
user-select: none;
}
div.network-manipulation-closeDiv:hover {
opacity: 0.6;
}
span.network-manipulationUI {
font-family: verdana;
font-size: 12px;
@ -615,7 +617,7 @@ span.network-manipulationUI.none:active {
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
}
span.network-manipulationUI.none {
padding: 0px 0px 0px 0px;
padding: 0;
}
span.network-manipulationUI.notification{
margin: 2px;

+ 1
- 1
dist/vis.js View File

@ -4,7 +4,7 @@
*
* A dynamic, browser-based visualization library.
*
* @version 3.3.0
* @version 3.3.1-SNAPSHOT
* @date 2014-08-29
*
* @license

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


+ 1
- 1
dist/vis.min.js View File

@ -4,7 +4,7 @@
*
* A dynamic, browser-based visualization library.
*
* @version 3.3.0
* @version 3.3.1-SNAPSHOT
* @date 2014-08-29
*
* @license

+ 1
- 1
examples/graph2d/13_localization.html View File

@ -13,7 +13,7 @@
}
</style>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment-with-langs.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment-with-langs.min.js"></script>
<script src="../../dist/vis.js"></script>
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
</head>

+ 1
- 1
examples/network/31_localization.html View File

@ -9,7 +9,7 @@
}
#mynetwork {
position:relative;
width: 600px;
width: 800px;
height: 600px;
border: 1px solid lightgray;
}

+ 1
- 1
examples/timeline/19_localization.html View File

@ -10,7 +10,7 @@
}
</style>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js"></script>
<script src="../../dist/vis.js"></script>
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
</head>

+ 7
- 5
lib/network/css/network-manipulation.css View File

@ -29,14 +29,12 @@ div.network-manipulation-editMode {
div.network-manipulation-closeDiv {
position:absolute;
left: 0;
right: 0;
top: 0;
width: 30px;
height: 30px;
margin-top: 3px;
margin-left: 590px;
background-position: 0px 0px;
background-position: 20px 3px;
background-repeat: no-repeat;
background-image: url("img/network/cross.png");
cursor: pointer;
@ -48,6 +46,10 @@ div.network-manipulation-closeDiv {
user-select: none;
}
div.network-manipulation-closeDiv:hover {
opacity: 0.6;
}
span.network-manipulationUI {
font-family: verdana;
font-size: 12px;
@ -89,7 +91,7 @@ span.network-manipulationUI.none:active {
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
}
span.network-manipulationUI.none {
padding: 0px 0px 0px 0px;
padding: 0;
}
span.network-manipulationUI.notification{
margin: 2px;

+ 1
- 1
package.json View File

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

Loading…
Cancel
Save