summaryrefslogtreecommitdiff
path: root/timelinejs.tpl.php
blob: e3e1175e133298e8f9055121c010f3caf29a5bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed" style="width:<?print $width; ?>; height: <?php print $height; ?>;"></div>
<script type="text/javascript">
  var timeline_config = {
      width:         "<?php print $width; ?>",
      height:        "<?php print $height; ?>",
      source:        "<?php print $source; ?>",
      start_at_end:   <?php print $start_at_end; ?>,
      hash_bookmark:  <?php print $hash_bookmark; ?>,
      css:           "<?php print $css; ?>",
      js:            "<?php print $js; ?>",
      font:          "<?php print $font; ?>",
      lang:          "<?php print $lang; ?>"
  }

function MakeMenuLinksOpenInNewWindow() {
    var links = document.getElementsByTagName("a");
    for (var i = 0; i < links.length; i++) {
        if (links[i].href != "http://widgets.socioambiental.org/")
            links[i].target = "_parent";
    }
}
MakeMenuLinksOpenInNewWindow();
</script>
<script type="text/javascript" src="/<?php print $library_path; ?>/compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed -->