https://github.com/twbs/bootstrap
Revision 74f24cdf2458d917c7b7d8074706ec5823f4d166 authored by GeoSot on 30 January 2022, 15:39:03 UTC, committed by GitHub on 30 January 2022, 15:39:03 UTC
* Tooltip.js: move `shown` check to method

* Tooltip.js: move Popper's creation to method

* Tooltip.js: merge checks before `hide`

* Tooltip.js: minor refactoring on `toggle` method
1 parent e1020a4
Raw File
Tip revision: 74f24cdf2458d917c7b7d8074706ec5823f4d166 authored by GeoSot on 30 January 2022, 15:39:03 UTC
More tooltip refactoring (#35546)
Tip revision: 74f24cd
package.js
// package metadata file for Meteor.js

/* eslint-env meteor */

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.1.3',
  git: 'https://github.com/twbs/bootstrap.git'
})

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