diff options
Diffstat (limited to 'js/src/alert.js')
| -rw-r--r-- | js/src/alert.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/js/src/alert.js b/js/src/alert.js index b30d0d3a0..9d6c498b9 100644 --- a/js/src/alert.js +++ b/js/src/alert.js @@ -1,14 +1,15 @@ +import $ from 'jquery' import Util from './util' /** * -------------------------------------------------------------------------- - * Bootstrap (v4.0.0-alpha.6): alert.js + * Bootstrap (v4.0.0-beta): alert.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ -const Alert = (($) => { +const Alert = (() => { /** @@ -18,7 +19,7 @@ const Alert = (($) => { */ const NAME = 'alert' - const VERSION = '4.0.0-alpha.6' + const VERSION = '4.0.0-beta' const DATA_KEY = 'bs.alert' const EVENT_KEY = `.${DATA_KEY}` const DATA_API_KEY = '.data-api' @@ -188,6 +189,6 @@ const Alert = (($) => { return Alert -})(jQuery) +})($) export default Alert |
