An open API service indexing awesome lists of open source software.

https://github.com/weprovide/magento2-module-twitterbootstrap-js

Add Twitter Bootstrap javascript from CDN as a require.js module shim. With fallback to local version.
https://github.com/weprovide/magento2-module-twitterbootstrap-js

Last synced: 8 months ago
JSON representation

Add Twitter Bootstrap javascript from CDN as a require.js module shim. With fallback to local version.

Awesome Lists containing this project

README

          

# Magento2 Twitter Bootstrap Javascript

Add Twitter Bootstrap javascript from CDN as a require.js module shim. With fallback to local version when CDN is offline.

## Installation

1. `composer require weprovide/magento2-module-twitterbootstrap-js`
will install the latest version. If you want a specific Twitter Bootstrap version you can use this:
`composer require timneutkens/magento2-module-twitterbootstrap-js:`

2. Run `bin/magento setup:upgrade`

3. Run `bin/magento setup:static-content:deploy`

### Available versions

- 3.3.7

## Usage

For usage examples see the [Twitter Bootstrap website](http://getbootstrap.com/javascript/)

```javascript
require(['jquery', 'jquery.bootstrap'], function ($) {
$('.element').carousel()
});
```