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:
authorJacob Thornton <jacobthornton@gmail.com>2015-08-13 07:12:03 +0300
committerJacob Thornton <jacobthornton@gmail.com>2015-08-13 07:12:03 +0300
commit11abb0f7e94771bcf604c72b34f6688e6aa3a290 (patch)
tree35266bd178dc46aa2371b41d88e4c5b142749651 /js/dist/popover.js
parent9bdb6d13f606ec18d808a30e5ebc28ec3eb82a4b (diff)
fix modal
Diffstat (limited to 'js/dist/popover.js')
-rw-r--r--js/dist/popover.js90
1 files changed, 45 insertions, 45 deletions
diff --git a/js/dist/popover.js b/js/dist/popover.js
index 8a30917c3b..fcd6bd2009 100644
--- a/js/dist/popover.js
+++ b/js/dist/popover.js
@@ -2,9 +2,11 @@
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
+var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
-function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; }
+function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
/**
* --------------------------------------------------------------------------
@@ -69,15 +71,19 @@ var Popover = (function ($) {
*/
var Popover = (function (_Tooltip) {
+ _inherits(Popover, _Tooltip);
+
function Popover() {
_classCallCheck(this, Popover);
- if (_Tooltip != null) {
- _Tooltip.apply(this, arguments);
- }
+ _get(Object.getPrototypeOf(Popover.prototype), 'constructor', this).apply(this, arguments);
}
- _inherits(Popover, _Tooltip);
+ /**
+ * ------------------------------------------------------------------------
+ * jQuery
+ * ------------------------------------------------------------------------
+ */
_createClass(Popover, [{
key: 'isWithContent',
@@ -111,87 +117,81 @@ var Popover = (function ($) {
this.cleanupTether();
}
- }, {
- key: '_getContent',
// private
+ }, {
+ key: '_getContent',
value: function _getContent() {
return this.element.getAttribute('data-content') || (typeof this.config.content == 'function' ? this.config.content.call(this.element) : this.config.content);
}
+
+ // static
+
}], [{
+ key: '_jQueryInterface',
+ 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
- get: function () {
+ get: function get() {
return VERSION;
}
}, {
key: 'Default',
- get: function () {
+ get: function get() {
return Default;
}
}, {
key: 'NAME',
- get: function () {
+ get: function get() {
return NAME;
}
}, {
key: 'DATA_KEY',
- get: function () {
+ get: function get() {
return DATA_KEY;
}
}, {
key: 'Event',
- get: function () {
+ get: function get() {
return Event;
}
}, {
key: 'EVENT_KEY',
- get: function () {
+ get: function get() {
return EVENT_KEY;
}
}, {
key: 'DefaultType',
- get: function () {
+ get: function get() {
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;
})(Tooltip);
- /**
- * ------------------------------------------------------------------------
- * jQuery
- * ------------------------------------------------------------------------
- */
-
$.fn[NAME] = Popover._jQueryInterface;
$.fn[NAME].Constructor = Popover;
$.fn[NAME].noConflict = function () {
@@ -201,4 +201,4 @@ var Popover = (function ($) {
return Popover;
})(jQuery);
-//# sourceMappingURL=popover.js.map \ No newline at end of file
+//# sourceMappingURL=popover.js.map