[llvm-commits] CVS: llvm-www/pubs/pubs.js
Misha Brukman
brukman at cs.uiuc.edu
Thu Aug 20 10:19:32 PDT 2009
Changes in directory llvm-www/pubs:
pubs.js updated: 1.48 -> 1.49
---
Log message:
A chart with blue bars (instead of bright yellow) looks better on this page.
---
Diffs of the changes: (+3 -1)
pubs.js | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
Index: llvm-www/pubs/pubs.js
diff -u llvm-www/pubs/pubs.js:1.48 llvm-www/pubs/pubs.js:1.49
--- llvm-www/pubs/pubs.js:1.48 Mon Jun 29 16:28:53 2009
+++ llvm-www/pubs/pubs.js Thu Aug 20 12:18:35 2009
@@ -897,8 +897,10 @@
var container = document.getElementById(id);
var image = document.createElement('img');
- image.src = 'http://chart.apis.google.com/chart?cht=bvs' + // vertical bars
+ image.src = 'http://chart.apis.google.com/chart' +
+ '?cht=bvs' + // vertical bars
'&chs=300x200' + // size
+ '&chco=76A4FB' + // color
'&chtt=Histogram' + // title
'&chdl=Count' + // label in legend
'&chxt=x,y' + // axes
More information about the llvm-commits
mailing list