Differences From Artifact [1024af1c8a]:
- File src/graph.js — part of check-in [146f02f922] at 2020-06-08 19:05:52 on branch trunk — Avoid drawing multiple copies of cherrypick merge risers. (user: drh size: 28548) [more...]
To Artifact [c858a74087]:
- File src/graph.js — part of check-in [139db4c54e] at 2020-07-31 23:54:54 on branch trunk — Fix caching for bundled access to /builtin. Add a missing semicolon to the end of graph.js. (user: drh size: 28549) [more...]
| ︙ | ︙ | |||
777 778 779 780 781 782 783 |
for(i=0; 1; i++){
var dataObj = document.getElementById("timeline-data-"+i);
if(!dataObj) break;
var txJson = dataObj.textContent || dataObj.innerText;
var tx = JSON.parse(txJson);
TimelineGraph(tx);
}
| | | 777 778 779 780 781 782 783 784 |
for(i=0; 1; i++){
var dataObj = document.getElementById("timeline-data-"+i);
if(!dataObj) break;
var txJson = dataObj.textContent || dataObj.innerText;
var tx = JSON.parse(txJson);
TimelineGraph(tx);
}
}());
|