fixed toggle-cell tool-tips sticking around.

This commit is contained in:
Keivan Beigi 2013-07-25 19:09:17 -07:00
parent 642207c68d
commit 3f203acab9
6 changed files with 17 additions and 43 deletions

View file

@ -14,8 +14,7 @@ define(
var date = this.model.get(this.column.get('name'));
if (date) {
this.$el.html(FormatHelpers.DateHelper(date));
this.$el.attr('title', Moment(date).format('LLLL'));
this.$el.html("<span title='" + Moment(date).format('LLLL') + "' >" + FormatHelpers.DateHelper(date) + "</span");
}
return this;