Skip to content

Commit

Permalink
Merge pull request tomdale#14 from Kilian/master
Browse files Browse the repository at this point in the history
add Grafico to the list of libraries
  • Loading branch information
tomdale committed May 30, 2011
2 parents af6b5f6 + 26192bc commit 1897072
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions js/app.js
Expand Up @@ -161,13 +161,13 @@ EveryJS.libraries = [
{
name: "functools",
website: "http://github.com/azer/functools",
description: "A minimal JavaScript library for functional operations.",
description: "A minimal JavaScript library for functional operations.",
size: 2
},
{
name: "Raphael",
website: "http://raphaeljs.com/",
description: "A small JavaScript library that should simplify your work with vector graphics on the web.",
description: "A small JavaScript library that should simplify your work with vector graphics on the web.",
size: 2
},
{
Expand All @@ -194,13 +194,26 @@ EveryJS.libraries = [
{
name: "environ",
website: "http://github.com/azer/environ",
description: "Cross platform environment detection library.",
description: "Cross platform environment detection library.",
useIf: [
"You want to detect what platform the user is running.",
"You want to detect what JavaScript engine the user's platform utilises.",
"You want to detect what rendering engine the user's browser utilises."
],
size: 1
},
{
name: "Grafico",
website: "http://grafico.kilianvalkhof.com/",
description: "Grafico is a javascript charting library based on Raphaël and Prototype.js. Grafico's basic principles are to provide good, clean looking graphs inspired by work of Stephen Few and Edward Tufte, while still being flexible to implement and providing numerous api options to tweak the look of the graphs.",
license: "MIT",
tags: [ 'javascript','svg', 'chart', 'graph'],
useIf: [
"You need good looking charts",
"You need easily readable charts"
],
dependencies: ["Prototype", "Raphaël"],
size: "36kb or less"
}
];

Expand Down Expand Up @@ -310,3 +323,4 @@ Handlebars.registerHelper('list', function(key) {
});
return new Handlebars.SafeString(buf + '</ul>');
});

0 comments on commit 1897072

Please sign in to comment.