changeset 6733:936a9073bb73

graph: fix JavaScript issues to make it work on IE
author Benoit Allard <benoit@aeteurope.nl>
date Wed, 25 Jun 2008 20:50:40 +0200
parents 3e532b97d1e1
children 41edbc2e0b0b
files templates/coal/graph.tmpl templates/gitweb/graph.tmpl templates/graph.tmpl
diffstat 3 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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) {
--- 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) {
--- 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">
 <link rel="alternate" type="application/rss+xml"
    href="#url#rss-tags" title="RSS feed for #repo|escape#: tags">
+<!--[if IE]><script type="text/javascript" src="#staticurl#excanvas.js"></script><![endif]-->
 </head>
 <body>
 
@@ -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) {