# HG changeset patch # User Benoit Allard # Date 1214419840 -7200 # Node ID 936a9073bb7335857e6dd08a9ddcebb97e331684 # Parent 3e532b97d1e18bfb88dd9a1bc5b7c84b277418cb graph: fix JavaScript issues to make it work on IE diff -r 3e532b97d1e1 -r 936a9073bb73 templates/coal/graph.tmpl --- a/templates/coal/graph.tmpl Wed Jun 25 10:54:48 2008 +0200 +++ b/templates/coal/graph.tmpl Wed Jun 25 20:50:40 2008 +0200 @@ -54,8 +54,8 @@ document.getElementById('noscript').style.display = 'none'; -data = {jsdata|json}; -graph = new Graph(); +var data = {jsdata|json}; +var graph = new Graph(); graph.scale({bg_height}); graph.edge = function(x0, y0, x1, y1, color) { diff -r 3e532b97d1e1 -r 936a9073bb73 templates/gitweb/graph.tmpl --- a/templates/gitweb/graph.tmpl Wed Jun 25 10:54:48 2008 +0200 +++ b/templates/gitweb/graph.tmpl Wed Jun 25 20:50:40 2008 +0200 @@ -46,8 +46,8 @@ document.getElementById('noscript').style.display = 'none'; -data = {jsdata|json}; -graph = new Graph(); +var data = {jsdata|json}; +var graph = new Graph(); graph.scale({bg_height}); graph.edge = function(x0, y0, x1, y1, color) { diff -r 3e532b97d1e1 -r 936a9073bb73 templates/graph.tmpl --- a/templates/graph.tmpl Wed Jun 25 10:54:48 2008 +0200 +++ b/templates/graph.tmpl Wed Jun 25 20:50:40 2008 +0200 @@ -4,6 +4,7 @@ href="#url#atom-tags" title="Atom feed for #repo|escape#: tags"> + @@ -39,8 +40,8 @@ document.getElementById('noscript').style.display = 'none'; -data = {jsdata|json}; -graph = new Graph(); +var data = {jsdata|json}; +var graph = new Graph(); graph.scale({bg_height}); graph.edge = function(x0, y0, x1, y1, color) {