Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2019-07-24 09:13:50 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-07-24 09:13:50 +0300
commit114a0ee193ffe7869c8369f25ef4dcc44929fbf5 (patch)
tree15e6e79c2f1b06eff34de7fba10bab2ec5dd0070 /js/dist/tab.js
parente101ba4989c1930206ac2a092246612bab105f8e (diff)
Rebuild the dist to pickup new utilities file (#29105)
Dist after adding new utils file
Diffstat (limited to 'js/dist/tab.js')
-rw-r--r--js/dist/tab.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/dist/tab.js b/js/dist/tab.js
index bf42490c71..65b7fdba7b 100644
--- a/js/dist/tab.js
+++ b/js/dist/tab.js
@@ -4,8 +4,8 @@
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
(function (global, factory) {
- typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./dom/data.js'), require('./dom/event-handler.js'), require('./dom/selector-engine.js')) :
- typeof define === 'function' && define.amd ? define(['./dom/data.js', './dom/event-handler.js', './dom/selector-engine.js'], factory) :
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('../dom/data.js'), require('../dom/event-handler.js'), require('../dom/selector-engine.js')) :
+ typeof define === 'function' && define.amd ? define(['../dom/data.js', '../dom/event-handler.js', '../dom/selector-engine.js'], factory) :
(global = global || self, global.Tab = factory(global.Data, global.EventHandler, global.SelectorEngine));
}(this, function (Data, EventHandler, SelectorEngine) { 'use strict';
@@ -340,6 +340,8 @@
* add .tab to jQuery only if jQuery is present
*/
+ /* istanbul ignore if */
+
if (typeof jQuery !== 'undefined') {
var JQUERY_NO_CONFLICT = jQuery.fn[NAME];
jQuery.fn[NAME] = Tab._jQueryInterface;