This project provides a widget for displaying event/show/lineup information on a grid.
It has two dependencies: dojo and put-selector.
There is currently only one top-level widget module:
This provides everything to render lineup data on a page.define(['lineup/Cubes'], function(Cubes) {
// attach to a DOM id
var cubes = new Cubes({}, 'cubes');
...
// render the lineup
cubes.setLineup(lineupData);
cubes.render()
});