Files
meteor/packages/jquery-layout/package.js
2012-01-27 20:02:26 -08:00

12 lines
284 B
JavaScript

// XXX should probably nudge people toward the CSS Flexible Box Model
// flexie, rather than this
Package.describe({
summary: "Easily create arbitrary multicolumn layouts"
});
Package.on_use(function (api) {
api.use('jquery');
api.add_files('jquery.layout.js', 'client');
});