Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Loggings and fixes #6

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f22a14d
upload folder
alkadi-mh Nov 30, 2020
a58dfd9
fixes
alkadi-mh Feb 1, 2021
76e0acb
Saving and restoring states
alkadi-mh Mar 15, 2021
962bf3e
fix
alkadi-mh Mar 31, 2021
6642969
restoring controls values
alkadi-mh Apr 17, 2021
93bd075
visWeb lib
alkadi-mh Jun 2, 2021
ad30a5e
visWeb lib
alkadi-mh Jun 2, 2021
b214f77
add link direction to map
Jun 2, 2021
be85951
merged
Jun 2, 2021
5092897
mandtory logging
alkadi-mh Jun 25, 2021
e2c7ddd
introduce slight link curve nand show node location on label
benjbach Jul 28, 2021
05953f7
place nodes without locations to null.null
benjbach Jul 28, 2021
2976f77
ignore trace then on localhost
benjbach Aug 1, 2021
fa3a204
add link edge gap function to map
benjbach Aug 1, 2021
b613a1f
load vistorian-module from npm
benjbach Aug 2, 2021
74944d5
load vistorian-core from npm and show multiple links
benjbach Aug 2, 2021
60c6c0d
fix traces output issue
benjbach Aug 2, 2021
ed3f8ab
fix traces output issue on localhost2
benjbach Aug 2, 2021
44d121d
load vistorian-core locally
benjbach Aug 2, 2021
8262f21
load vistorian-core remotely
benjbach Aug 2, 2021
1622a57
add linkwidth slider
benjbach Aug 2, 2021
2da3743
add linkwidth slider
benjbach Aug 2, 2021
d2548d8
fix multilink directionality issue
benjbach Aug 2, 2021
508d702
fix link direction multilink issue
benjbach Aug 2, 2021
83c3937
fix link direction issue
benjbach Aug 2, 2021
378b7bb
zoom/pan logs
alkadi-mh Aug 14, 2021
9849fd5
Merge branch 'master' of github.com:alkadi-mh/vistorian-map
alkadi-mh Aug 14, 2021
6817a74
logs update
alkadi-mh Aug 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/assets/js/main.js

Large diffs are not rendered by default.

17 changes: 3 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
<link rel="stylesheet" type="text/css" href="./static/visview.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet' type='text/css'>

<!-- VS: Call to trace.js -->
<script type="text/javascript" src="./static/traces/trace.js"></script>

<script src="./d3.js"></script>
Expand All @@ -24,25 +22,17 @@
src="./static/DataTables-1.10.7/media/js/jquery.dataTables.js"></script>

<script> var exports = {}; </script>
<!-- <script src="./node_modules/vistorian-web/lib/vistorian-web.js"></script> -->
<!-- <script src="https://unpkg.com/[email protected]/lib/vistorian-core.js"></script> -->
<script src="./node_modules/vistorian-core/lib/vistorian-core.js"></script>
<script src="./node_modules/vistorian-web/lib/vistorian-vis.js"></script>

</head>
<title>Node link</title>

<body>
<!-- VS: Call to trace_test_130529 -->
<script type="text/javascript" src="./static/traces/trace_test_130529.js"></script>
<table>
<tr>

<!--
<td width="220px">
<div id="logoFrame"></div>
<div width="220" id="bookmarkFrame"></div>
</td>
-->

<td width="220px">
<div width="220" id="visFrame">
</td>
Expand All @@ -52,10 +42,9 @@

<script type="text/javascript">
// Load demo data
$.get("https://raw.githubusercontent.com/networkcube/vistorian/master/demo/demo_scientists.vistorian",
$.get("https://raw.githubusercontent.com/networkcube/vistorian-web/master/web/demo/demo_scientists.vistorian",
function (data) {
window.exports.networkcube.vistorian.importData(JSON.parse(data), 0);
window.exports.networkcube.vistorian.importData(JSON.parse(data), 0);
});

</script>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vistorian-map",
"version": "0.0.2-alpha",
"version": "0.0.5",
"description": "Vistorian-map is a java script / (Typescript) library and a programming framework for interactive network visualizations with:",
"main": "lib/index.js",
"types": "lib/index.d.js",
Expand All @@ -27,13 +27,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/networkcube/vistorian-map.git"
"url": "git+https://github.com/alkadi-mh/vistorian-map_tr.git"
},
"collaborators": [
"Jean-Daniel Fekete <[email protected]",
"Alexandra Ibarra Cuesta"
],
"homepage": "https://github.com/networkcube/networkcube#readme",
"homepage": "https://github.com/alkadi-mh/vistorian-web_tr#readme",
"bundledDependencies": [
"jquery",
"jstorage",
Expand Down
Loading