Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Dec 11, 2014
1 parent 29519d0 commit 16ea282
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "LightPivotTable",
"author": "ZitRo",
"version": "0.6.0",
"version": "0.7.0",
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
"main": "test/testServer.js",
"directories": {
"test": "test"
},
"devDependencies": {
"express": "^4.10.1",
"express": "^5.0.0-alpha.1",
"gulp": "^3.8.10",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.4.1",
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ var setup = { // Object that contain settings. Any setting may be missed.
MDX2JSONSource: "http://localhost:57772/SAMPLES", // MDX2JSON source server address
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
}
, caption: "My table" // if set, table basic caption will be replaced by this text
, showSummary: true // show summary by columns
, formatNumbers: "#,###.##" // number formatting mask
, formatNumbers: "#,###.##" // number formatting mask // @deprecated
, drillDownTarget: "dashboard name.dashboard" // custom drilldown target, DeepSee only.
},
lp = new LightPivotTable(setup);
Expand Down
2 changes: 1 addition & 1 deletion source/js/DataSource.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ DataSource.prototype.getCurrentData = function (callback) {

var data = ready.data;

console.log("Retrieved data:", ready);
//console.log("Retrieved data:", ready);

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

0 comments on commit 16ea282

Please sign in to comment.