Differences From Artifact [d1c24ceb39]:
- File src/graph.js — part of check-in [561fa8a3b7] at 2017-12-09 02:47:39 on branch trunk — The graph arrowhead control was inverted due to a missing "!" character in the graph.js file. (user: drh size: 13703)
To Artifact [94223c8137]:
- File src/graph.js — part of check-in [3f31676492] at 2017-12-13 17:17:53 on branch trunk — Always generate timeline-data for a timeline even if the table has no check-ins and thus no graph. This causes the timeline-data scanner to continue looking for subsequent timelines. (user: drh size: 13718) [more...]
| ︙ | ︙ | |||
380 381 382 383 384 385 386 |
(function(){
var i;
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);
| | | 380 381 382 383 384 385 386 387 388 389 |
(function(){
var i;
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);
if(tx.rowinfo) TimelineGraph(tx);
}
}())
|