Files
meteor/packages/jquery-layout/package.js
2014-03-07 12:00:20 -08:00

13 lines
304 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",
version: "1.0.0"
});
Package.on_use(function (api) {
api.use('jquery');
api.add_files('jquery.layout.js', 'client');
});