Files
meteor/packages/jquery/package.js
2013-07-12 17:36:40 -07:00

11 lines
229 B
JavaScript

Package.describe({
summary: "Manipulate the DOM using CSS selectors"
});
Package.on_use(function (api, where) {
api.add_files('jquery.js', 'client');
api.exportSymbol('$', where);
api.exportSymbol('jQuery', where);
});