bootstrap3-native
v1.0.11
Published
Fixed fork from 'bootstrap.native' for isomorphic applications
Downloads
8
Readme
Description
bootstrap3-native is a fixed fork from bootstrap.native. This version:
- contains types;
- allows you to build isomorphic web applications;
- hasn't got an automatic initialization of a components.
Installation
npm install bootstrap3-native
Usage
import { Modal } from 'bootstrap3-native';
var el = document.getElementById("myModal");
var modal = new Modal(el);
modal.show();