https://github.com/twbs/bootstrap
Revision 5512dde203cc3719bac20fb59aa269b99986cfee authored by Samarth Arora on 01 August 2020, 19:46:47 UTC, committed by Mark Otto on 03 August 2020, 16:57:12 UTC
1 parent 393efaf
Raw File
Tip revision: 5512dde203cc3719bac20fb59aa269b99986cfee authored by Samarth Arora on 01 August 2020, 19:46:47 UTC
Add transition to Pagination buttons just like other Bootstrap buttons
Tip revision: 5512dde
package.js
// package metadata file for Meteor.js

Package.describe({
  name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
  summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  version: '5.0.0-alpha1',
  git: 'https://github.com/twbs/bootstrap.git'
});

Package.onUse(function (api) {
  api.versionsFrom('METEOR@1.0');
  api.addFiles([
    'dist/css/bootstrap.css',
    'dist/js/bootstrap.js'
  ], 'client');
});
back to top