Skip to content

Commit 16ea282

Browse files
version bump
1 parent 29519d0 commit 16ea282

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "LightPivotTable",
33
"author": "ZitRo",
4-
"version": "0.6.0",
4+
"version": "0.7.0",
55
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
66
"main": "test/testServer.js",
77
"directories": {
88
"test": "test"
99
},
1010
"devDependencies": {
11-
"express": "^4.10.1",
11+
"express": "^5.0.0-alpha.1",
1212
"gulp": "^3.8.10",
1313
"gulp-clean": "^0.3.1",
1414
"gulp-concat": "^2.4.1",

readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ var setup = { // Object that contain settings. Any setting may be missed.
3939
MDX2JSONSource: "http://localhost:57772/SAMPLES", // MDX2JSON source server address
4040
basicMDX: "SELECT NON EMPTY [Product].[P1].[Product Category].Members ON 0, NON EMPTY [Outlet].[H1].[Region].Members ON 1 FROM [HoleFoods]" // basic MDX which are going to be rendered when widget loads
4141
}
42+
, caption: "My table" // if set, table basic caption will be replaced by this text
4243
, showSummary: true // show summary by columns
43-
, formatNumbers: "#,###.##" // number formatting mask
44+
, formatNumbers: "#,###.##" // number formatting mask // @deprecated
4445
, drillDownTarget: "dashboard name.dashboard" // custom drilldown target, DeepSee only.
4546
},
4647
lp = new LightPivotTable(setup);

source/js/DataSource.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ DataSource.prototype.getCurrentData = function (callback) {
157157

158158
var data = ready.data;
159159

160-
console.log("Retrieved data:", ready);
160+
//console.log("Retrieved data:", ready);
161161

162162
(data.Info || {}).action = _.ACTION;
163163
if (_.ACTION === "MDXDrillthrough") {

0 commit comments

Comments
 (0)