Difference between revisions of "Widget:Timeline"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
<includeonly> | <includeonly> | ||
<script> | <script> | ||
setTimeout( CreateTimeline, 500 ); | setTimeout( CreateTimeline, 500 ); | ||
function CreateTimeline() { | function CreateTimeline() { | ||
timelineparent = document.getElementById('timeline'); | var timelineparent = document.getElementById('timeline'); | ||
var smallestTime = 0; | var smallestTime = 0; | ||
var biggesttime=0; | var biggesttime=0; | ||
| Line 101: | Line 96: | ||
timelineparent.insertBefore(el, timelineparent.firstChild); | timelineparent.insertBefore(el, timelineparent.firstChild); | ||
} | } | ||
</script> | </script> | ||
</includeonly> | </includeonly> | ||