diff options
Diffstat (limited to 'docs/dist/js/bootstrap.js')
| -rw-r--r-- | docs/dist/js/bootstrap.js | 264 |
1 files changed, 132 insertions, 132 deletions
diff --git a/docs/dist/js/bootstrap.js b/docs/dist/js/bootstrap.js index 6f11dbace..3a94d49a9 100644 --- a/docs/dist/js/bootstrap.js +++ b/docs/dist/js/bootstrap.js @@ -294,14 +294,6 @@ var Alert = (function ($) { $(element).detach().trigger(Event.CLOSED).remove(); } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { key: '_jQueryInterface', // static @@ -332,6 +324,14 @@ var Alert = (function ($) { alertInstance.close(this); }; } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } }]); return Alert; @@ -461,14 +461,6 @@ var Button = (function ($) { this._element = null; } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { key: '_jQueryInterface', // static @@ -487,6 +479,14 @@ var Button = (function ($) { } }); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } }]); return Button; @@ -880,19 +880,6 @@ var Carousel = (function ($) { } } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { - key: 'Default', - get: function () { - return Default; - } - }, { key: '_jQueryInterface', // static @@ -953,6 +940,19 @@ var Carousel = (function ($) { event.preventDefault(); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } + }, { + key: 'Default', + get: function () { + return Default; + } }]); return Carousel; @@ -1263,19 +1263,6 @@ var Collapse = (function ($) { } } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { - key: 'Default', - get: function () { - return Default; - } - }, { key: '_getTargetFromElement', // static @@ -1306,6 +1293,19 @@ var Collapse = (function ($) { } }); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } + }, { + key: 'Default', + get: function () { + return Default; + } }]); return Collapse; @@ -1468,14 +1468,6 @@ var Dropdown = (function ($) { $(this._element).on(Event.CLICK, this.toggle); } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { key: '_jQueryInterface', // static @@ -1588,6 +1580,14 @@ var Dropdown = (function ($) { items[index].focus(); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } }]); return Dropdown; @@ -2049,19 +2049,6 @@ var Modal = (function ($) { return scrollbarWidth; } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { - key: 'Default', - get: function () { - return Default; - } - }, { key: '_jQueryInterface', // static @@ -2083,6 +2070,19 @@ var Modal = (function ($) { } }); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } + }, { + key: 'Default', + get: function () { + return Default; + } }]); return Modal; @@ -2383,19 +2383,6 @@ var ScrollSpy = (function ($) { } } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { - key: 'Default', - get: function () { - return Default; - } - }, { key: '_jQueryInterface', // static @@ -2415,6 +2402,19 @@ var ScrollSpy = (function ($) { } }); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } + }, { + key: 'Default', + get: function () { + return Default; + } }]); return ScrollSpy; @@ -2659,14 +2659,6 @@ var Tab = (function ($) { } } }], [{ - key: 'VERSION', - - // getters - - get: function () { - return VERSION; - } - }, { key: '_jQueryInterface', // static @@ -2686,6 +2678,14 @@ var Tab = (function ($) { } }); } + }, { + key: 'VERSION', + + // getters + + get: function () { + return VERSION; + } }]); return Tab; @@ -3224,6 +3224,30 @@ var Tooltip = (function ($) { return config; } }], [{ + key: '_jQueryInterface', + + // static + + value: function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY); + var _config = typeof config === 'object' ? config : null; + + if (!data && /destroy|hide/.test(config)) { + return; + } + + if (!data) { + data = new Tooltip(this, _config); + $(this).data(DATA_KEY, data); + } + + if (typeof config === 'string') { + data[config](); + } + }); + } + }, { key: 'VERSION', // getters @@ -3261,30 +3285,6 @@ var Tooltip = (function ($) { get: function () { return DefaultType; } - }, { - key: '_jQueryInterface', - - // static - - value: function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY); - var _config = typeof config === 'object' ? config : null; - - if (!data && /destroy|hide/.test(config)) { - return; - } - - if (!data) { - data = new Tooltip(this, _config); - $(this).data(DATA_KEY, data); - } - - if (typeof config === 'string') { - data[config](); - } - }); - } }]); return Tooltip; @@ -3420,6 +3420,30 @@ var Popover = (function ($) { return this.element.getAttribute('data-content') || (typeof this.config.content == 'function' ? this.config.content.call(this.element) : this.config.content); } }], [{ + key: '_jQueryInterface', + + // static + + value: function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY); + var _config = typeof config === 'object' ? config : null; + + if (!data && /destroy|hide/.test(config)) { + return; + } + + if (!data) { + data = new Popover(this, _config); + $(this).data(DATA_KEY, data); + } + + if (typeof config === 'string') { + data[config](); + } + }); + } + }, { key: 'VERSION', // getters @@ -3457,30 +3481,6 @@ var Popover = (function ($) { get: function () { return DefaultType; } - }, { - key: '_jQueryInterface', - - // static - - value: function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY); - var _config = typeof config === 'object' ? config : null; - - if (!data && /destroy|hide/.test(config)) { - return; - } - - if (!data) { - data = new Popover(this, _config); - $(this).data(DATA_KEY, data); - } - - if (typeof config === 'string') { - data[config](); - } - }); - } }]); return Popover; |
