source: Dev/branches/jQueryUI/client/d3/examples/splom/cross.js @ 249

Last change on this file since 249 was 249, checked in by hendrikvanantwerpen, 13 years ago

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

File size: 151 bytes
Line 
1function cross(a) {
2  return function(d) {
3    var c = [];
4    for (var i = 0, n = a.length; i < n; i++) c.push({x: d, y: a[i]});
5    return c;
6  };
7}
Note: See TracBrowser for help on using the repository browser.