Skip to content
Snippets Groups Projects
Commit 6f5bfea8 authored by juanf's avatar juanf
Browse files

Bugfix table load crashing in some cases

SVN: 36091
parent 060f21d7
No related branches found
No related tags found
No related merge requests found
...@@ -363,9 +363,9 @@ $.extend(Grid.prototype, { ...@@ -363,9 +363,9 @@ $.extend(Grid.prototype, {
//4. Tooltip //4. Tooltip
if(value !== finalValue) { if(value !== finalValue) {
finalValue = $("<div>").append(finalValue); finalValue = $("<div>").html(finalValue);
finalValue.tooltipster({ finalValue.tooltipster({
content: $(value) content: $("<span>").html(value)
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment