Files
meteor/packages/deprecated/jquery-layout/package.js
2021-06-24 15:18:36 +02:00

17 lines
386 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",
deprecated: true,
documentation: null
});
Package.onUse(function (api) {
api.versionsFrom("1.0");
api.use('jquery');
api.addFiles('jquery.layout.js', 'client');
});