From 26dbafee08bb0c90e473c7b40341eb6635f5cbe1 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 3 Aug 2013 23:51:28 -0700 Subject: [PATCH] Monitored status tooltip should disappear properly now --- UI/Cells/ToggleCell.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/UI/Cells/ToggleCell.js b/UI/Cells/ToggleCell.js index 7c530e510..8c6a17dcb 100644 --- a/UI/Cells/ToggleCell.js +++ b/UI/Cells/ToggleCell.js @@ -12,7 +12,6 @@ define( 'click': '_onClick' }, - _onClick: function () { var self = this; @@ -45,8 +44,7 @@ define( var tooltip = this.column.get('tooltip'); if (tooltip) { - this.$el.attr('title', tooltip); - this.$el.attr('data-container', 'body'); + this.$('i').attr('title', tooltip); } return this;