File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " LightPivotTable" ,
3
3
"author" : " ZitRo" ,
4
- "version" : " 1.4.9 " ,
4
+ "version" : " 1.4.10 " ,
5
5
"description" : " A lightweight pivot table for MDX2JSON source for InterSystems Cache" ,
6
6
"main" : " test/testServer.js" ,
7
7
"repository" : {
Original file line number Diff line number Diff line change @@ -1133,6 +1133,9 @@ PivotView.prototype.renderRawData = function (data) {
1133
1133
tr . appendChild (
1134
1134
th = document . createElement ( rawData [ y ] [ x ] . isCaption ? "th" : "td" )
1135
1135
) ;
1136
+ if ( rawData [ y ] [ x ] . source && rawData [ y ] [ x ] . source . title ) {
1137
+ th . setAttribute ( "title" , rawData [ y ] [ x ] . source . title ) ;
1138
+ }
1136
1139
div = document . createElement ( "div" ) ;
1137
1140
if ( rawData [ y ] [ x ] . value ) {
1138
1141
div . textContent = rawData [ y ] [ x ] . value ;
You can’t perform that action at this time.
0 commit comments