mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
284 B
JavaScript
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');
|
|
});
|