Files
meteor/packages/bootstrap/package.js
matt debergalis d89fb3542a tweak
2012-04-26 10:40:07 -07:00

17 lines
599 B
JavaScript

Package.describe({
summary: "UX/UI framework from Twitter"
});
Package.on_use(function (api) {
api.add_files('css/bootstrap.css', 'client');
api.add_files('css/bootstrap-responsive.css', 'client');
api.add_files('js/bootstrap.js', 'client');
api.add_files('img/glyphicons-halflings.png', 'client');
api.add_files('img/glyphicons-halflings-white.png', 'client');
// XXX this makes the paths to the icon sets absolute. it needs
// to be included _after_ the standard bootstrap css so
// that its styles take precedence.
api.add_files('css/bootstrap-override.css', 'client');
});