Explorar o código

Updated changelog and added fix for #695

Torkel Ödegaard %!s(int64=11) %!d(string=hai) anos
pai
achega
87bf6b3800
Modificáronse 2 ficheiros con 8 adicións e 4 borrados
  1. 6 3
      CHANGELOG.md
  2. 2 1
      src/vendor/angular/angular-strap.js

+ 6 - 3
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**

+ 2 - 1
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');