mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
// XXX should probably nudge people toward the CSS Flexible Box Model
|
|
// flexie, rather than this
|
|
|
|
Package.describe({
|
|
name: "jquery-layout",
|
|
summary: "Deprecated package for JS layout",
|
|
version: "1.0.3"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.versionsFrom("1.0");
|
|
api.use('jquery');
|
|
api.addFiles('jquery.layout.js', 'client');
|
|
});
|