bootstrap-show-modal
Advanced tools
Comparing version 1.1.14 to 1.1.16
{ | ||
"name": "bootstrap-show-modal", | ||
"version": "1.1.14", | ||
"version": "1.1.16", | ||
"description": "jQuery plugin to create bootstrap 4 modals in pure JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "src/bootstrap-show-modal.js", |
@@ -7,2 +7,3 @@ # bootstrap-show-modal | ||
## Installation | ||
@@ -62,4 +63,26 @@ | ||
[Also see the Bootstrap 4 Modal documentation](https://getbootstrap.com/docs/4.0/components/modal/). | ||
See the [Bootstrap 4 Modal documentation](https://getbootstrap.com/docs/4.0/components/modal/) for possible | ||
values of `options`, `modalClass` and `modalDialogClass`. | ||
## Minified version | ||
I don't provide a minified version because I think it should be up to the using programmer | ||
to create minified versions, with all the used script sources concatenated to one file. | ||
But, if you want it, it is easy to create your minified version with uglify: https://www.npmjs.com/package/uglify-js | ||
Just install uglify | ||
```bash | ||
npm install uglify-js -g | ||
``` | ||
and then in the src-folder | ||
```bash | ||
uglifyjs bootstrap-show-modal.js --compress --mangle > bootstrap-show-modal.min.js | ||
``` | ||
## Browser support | ||
It works in all modern browsers and in the Internet Explorer. Not tested with IE < 11. | ||
17639
87