mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-24 11:03:44 +00:00
Run grunt.
[ci skip]
This commit is contained in:
parent
647ad1cbed
commit
6e732ace2c
15 changed files with 19 additions and 19 deletions
|
|
@ -6328,7 +6328,7 @@ a.bg-danger:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.hidden-print .hidden-print {
|
.hidden-print {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
dist/css/bootstrap.css.map
vendored
BIN
dist/css/bootstrap.css.map
vendored
Binary file not shown.
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
dist/css/bootstrap.min.css.map
vendored
BIN
dist/css/bootstrap.min.css.map
vendored
Binary file not shown.
4
dist/js/bootstrap.min.js
vendored
4
dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
2
docs/assets/css/docs.min.css
vendored
2
docs/assets/css/docs.min.css
vendored
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -6328,7 +6328,7 @@ a.bg-danger:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
.hidden-print .hidden-print {
|
.hidden-print {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
docs/dist/css/bootstrap.css.map
vendored
BIN
docs/dist/css/bootstrap.css.map
vendored
Binary file not shown.
2
docs/dist/css/bootstrap.min.css
vendored
2
docs/dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
docs/dist/css/bootstrap.min.css.map
vendored
BIN
docs/dist/css/bootstrap.min.css.map
vendored
Binary file not shown.
|
|
@ -3054,9 +3054,9 @@ var Tooltip = (function ($) {
|
||||||
value: function setContent() {
|
value: function setContent() {
|
||||||
var tip = this.getTipElement();
|
var tip = this.getTipElement();
|
||||||
var title = this.getTitle();
|
var title = this.getTitle();
|
||||||
var method = this.config.html ? 'innerHTML' : 'innerText';
|
var method = this.config.html ? 'html' : 'text';
|
||||||
|
|
||||||
$(tip).find(Selector.TOOLTIP_INNER)[0][method] = title;
|
$(tip).find(Selector.TOOLTIP_INNER)[method](title);
|
||||||
|
|
||||||
$(tip).removeClass(ClassName.FADE).removeClass(ClassName.IN);
|
$(tip).removeClass(ClassName.FADE).removeClass(ClassName.IN);
|
||||||
|
|
||||||
|
|
@ -3418,10 +3418,10 @@ var Popover = (function ($) {
|
||||||
var tip = this.getTipElement();
|
var tip = this.getTipElement();
|
||||||
var title = this.getTitle();
|
var title = this.getTitle();
|
||||||
var content = this._getContent();
|
var content = this._getContent();
|
||||||
var titleElement = $(tip).find(Selector.TITLE)[0];
|
var $titleElement = $(tip).find(Selector.TITLE);
|
||||||
|
|
||||||
if (titleElement) {
|
if ($titleElement) {
|
||||||
titleElement[this.config.html ? 'innerHTML' : 'innerText'] = title;
|
$titleElement[this.config.html ? 'html' : 'text'](title);
|
||||||
}
|
}
|
||||||
|
|
||||||
// we use append for html objects to maintain js events
|
// we use append for html objects to maintain js events
|
||||||
|
|
|
||||||
4
docs/dist/js/bootstrap.min.js
vendored
4
docs/dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
6
docs/dist/js/umd/popover.js
vendored
6
docs/dist/js/umd/popover.js
vendored
|
|
@ -121,10 +121,10 @@
|
||||||
var tip = this.getTipElement();
|
var tip = this.getTipElement();
|
||||||
var title = this.getTitle();
|
var title = this.getTitle();
|
||||||
var content = this._getContent();
|
var content = this._getContent();
|
||||||
var titleElement = $(tip).find(Selector.TITLE)[0];
|
var $titleElement = $(tip).find(Selector.TITLE);
|
||||||
|
|
||||||
if (titleElement) {
|
if ($titleElement) {
|
||||||
titleElement[this.config.html ? 'innerHTML' : 'innerText'] = title;
|
$titleElement[this.config.html ? 'html' : 'text'](title);
|
||||||
}
|
}
|
||||||
|
|
||||||
// we use append for html objects to maintain js events
|
// we use append for html objects to maintain js events
|
||||||
|
|
|
||||||
4
docs/dist/js/umd/tooltip.js
vendored
4
docs/dist/js/umd/tooltip.js
vendored
|
|
@ -348,9 +348,9 @@
|
||||||
value: function setContent() {
|
value: function setContent() {
|
||||||
var tip = this.getTipElement();
|
var tip = this.getTipElement();
|
||||||
var title = this.getTitle();
|
var title = this.getTitle();
|
||||||
var method = this.config.html ? 'innerHTML' : 'innerText';
|
var method = this.config.html ? 'html' : 'text';
|
||||||
|
|
||||||
$(tip).find(Selector.TOOLTIP_INNER)[0][method] = title;
|
$(tip).find(Selector.TOOLTIP_INNER)[method](title);
|
||||||
|
|
||||||
$(tip).removeClass(ClassName.FADE).removeClass(ClassName.IN);
|
$(tip).removeClass(ClassName.FADE).removeClass(ClassName.IN);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue