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 <markdotto@gmail.com>2017-06-30 18:32:49 +0300
committerMark Otto <markdotto@gmail.com>2017-06-30 18:32:49 +0300
commitf83c981d089d1b15159bb6646e15401a42563cd6 (patch)
tree8682d6b201bfec8901b6414d11ecc92bcece506b /js/dist/popover.js
parentf46f26bbaa16486bdfe07789a1491cc05eec8dcb (diff)
build dist
Diffstat (limited to 'js/dist/popover.js')
-rw-r--r--js/dist/popover.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/js/dist/popover.js b/js/dist/popover.js
index 5153c4201e..e60fcf6bc4 100644
--- a/js/dist/popover.js
+++ b/js/dist/popover.js
@@ -63,14 +63,14 @@ var Popover = function ($) {
FOCUSOUT: 'focusout' + EVENT_KEY,
MOUSEENTER: 'mouseenter' + EVENT_KEY,
MOUSELEAVE: 'mouseleave' + EVENT_KEY
+ };
- /**
- * ------------------------------------------------------------------------
- * Class Definition
- * ------------------------------------------------------------------------
- */
+ /**
+ * ------------------------------------------------------------------------
+ * Class Definition
+ * ------------------------------------------------------------------------
+ */
- };
var Popover = function (_Tooltip) {
_inherits(Popover, _Tooltip);
@@ -95,10 +95,10 @@ var Popover = function ($) {
};
Popover.prototype.setContent = function setContent() {
- var $tip = $(this.getTipElement()
+ var $tip = $(this.getTipElement());
// we use append for html objects to maintain js events
- );this.setElementContent($tip.find(Selector.TITLE), this.getTitle());
+ this.setElementContent($tip.find(Selector.TITLE), this.getTitle());
this.setElementContent($tip.find(Selector.CONTENT), this._getContent());
$tip.removeClass(ClassName.FADE + ' ' + ClassName.SHOW);