Skip to content

Commit

Permalink
Fix #58: Remove redundant tooltip title on hover of caption element
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Jun 12, 2015
1 parent 8ae690a commit 01e448f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
version 3.5.3
=============
**Date:** 13-Jun-2015

1. (enh #58): Remove redundant tooltip title on hover of caption element.

version 3.5.2
=============
**Date:** 10-May-2015
Expand Down
2 changes: 1 addition & 1 deletion js/star-rating.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
html = self.fetchCaption(val);
if (!isEmpty(self.$captionElement)) {
addCss(self.$captionElement, 'caption');
self.$captionElement.attr({"title": self.clearCaption}).html(html);
self.$captionElement.html(html);
return '';
}
return '<div class="caption">' + html + '</div>';
Expand Down
Loading

0 comments on commit 01e448f

Please sign in to comment.