diff --git a/CHANGELOG.md b/CHANGELOG.md index dc930846560..b900b3245f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,6 @@ - [Issue #578](https://github.com/grafana/grafana/issues/578). Dashboard: Row option to display row title even when the row is visible - [Issue #672](https://github.com/grafana/grafana/issues/672). Dashboard: panel fullscreen & edit state is present in url, can now link to graph in edit & fullscreen mode. -**Fixes** -- [Issue #691](https://github.com/grafana/grafana/issues/691). Dashboard: tooltip fixes, sometimes they would not show, and sometimes they would get stuck. - **Tech** - Upgraded from angularjs 1.1.5 to 1.3 beta 17; - Switch from underscore to lodash @@ -15,6 +12,12 @@ - Test coverage through coveralls - Upgrade from jquery 1.8.0 to 2.1.1 (**Removes support for IE7 & IE8**) +# 1.7.1 (unreleased) + +**Fixes** +- [Issue #691](https://github.com/grafana/grafana/issues/691). Dashboard: tooltip fixes, sometimes they would not show, and sometimes they would get stuck. +- [Issue #695](https://github.com/grafana/grafana/issues/695). Dashboard: Tooltip on goto home menu icon would get stuck after clicking on it + # 1.7.0 (2014-08-11) **Fixes** diff --git a/src/vendor/angular/angular-strap.js b/src/vendor/angular/angular-strap.js index 79bae9ef4ae..2da858ded51 100644 --- a/src/vendor/angular/angular-strap.js +++ b/src/vendor/angular/angular-strap.js @@ -783,7 +783,8 @@ angular.module('$strap.directives').directive('bsTooltip', [ value = newValue; } }); - if (!!attrs.unique) { + // Grafana change, always hide other tooltips + if (true) { element.on('show', function (ev) { $('.tooltip.in').each(function () { var $this = $(this), tooltip = $this.data('tooltip');