diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9879e0c..9805f46 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
+
+## [1.17.1] - 2022-10-22
### Fixed
- Fixed broken [Tooltip](https://chird.github.io/meteoJS/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html) with Bootstrap v5.2.2.
@@ -304,7 +306,8 @@ will not work anymore, until you pass a callback to `getTimeText`.
### Fixed
- Some tests with DOM usage.
-[Unreleased]: https://github.com/chird/meteoJS/compare/v1.17.0...HEAD
+[Unreleased]: https://github.com/chird/meteoJS/compare/v1.17.1...HEAD
+[1.17.1]: https://github.com/chird/meteoJS/compare/v1.17.0...v1.17.1
[1.17.0]: https://github.com/chird/meteoJS/compare/v1.16.1...v1.17.0
[1.16.1]: https://github.com/chird/meteoJS/compare/v1.16.0...v1.16.1
[1.16.0]: https://github.com/chird/meteoJS/compare/v1.15.0...v1.16.0
diff --git a/doc/Modelviewer.js.html b/doc/Modelviewer.js.html
index 6898bc1..d9b3986 100644
--- a/doc/Modelviewer.js.html
+++ b/doc/Modelviewer.js.html
@@ -2,7 +2,7 @@
* @inheritdoc
*/
onContentChange() {
- /* If no content is passed, the tooltip will not open with a
- * content-callback until the tooltip is initialized otherwise. */
- this.tooltipNode.attr('data-bs-original-title',
- isStringContent(this.content) ? this.content : '-');
-
this._updateNonStringContent();
this.update();
}
@@ -186,9 +177,14 @@
Source: tooltip/BootstrapTooltip.js
* @private
*/
_initBootstrapOptions({
- trigger = 'manual'
+ trigger = 'manual',
+ title = '-'
} = {}) {
this.bootstrapOptions.trigger = trigger;
+ this.bootstrapOptions.title = title;
+ // Because of a bug in Bootstrap 5.2.x, animation should be disabled.
+ // https://github.com/twbs/bootstrap/issues/36875
+ this.bootstrapOptions.animation = false;
}
/**
@@ -219,25 +215,16 @@