Skip to content

Commit e93c8b5

Browse files
Readme and test server enhancements
1 parent 974000e commit e93c8b5

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

readme.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ lp.setFilter("[DateOfSale].[Actual].[YearSold].&[2009]");
100100
lp.refresh(); // refresh pivot contents
101101
lp.updateSizes(); // recalculate pivot sizes
102102
lp.changeBasicMDX("..."); // change mdx for LPT
103-
lp.getActualMDX(); // returns currently displayed MDX
104103
var rows = lp.getRowsValues([1,2,3]); // returns the values in rows 1, 2, 3
105104
var model = lp.getModel(); // returns data model representing currently rendered data set
106105
lp.getSelectedRows(); // returns array with selected rows indexes. First row have index 1.
@@ -130,11 +129,10 @@ You need [NodeJS](http://nodejs.org/) platform to be installed in your system to
130129
tasks.
131130

132131
To build project and see working example, gulp and it's plugins must be installed. Simple run
133-
<code>npm install -g gulp</code> and <code>npm install</code> commands to perform all required
134-
installations.
132+
<code>npm install</code> command to perform all required installations.
135133

136-
By running <code>gulp</code> command later, <code>build</code> directory appears with all
137-
required files there.
134+
By running <code>npm run build</code> command later, <code>build</code> directory will appear with
135+
all required files there.
138136

139137
## Debug
140138

@@ -146,5 +144,5 @@ Also anytime you can build project and then check <code>build/example/index.html
146144

147145
## Preview
148146

149-
Run <code>gulp</code> command and then check <code>build/WEBModule/index.html</code>.
147+
Run <code>npm run build</code> command and then check <code>build/WEBModule/index.html</code>.
150148
![Light pivot table](https://cloud.githubusercontent.com/assets/4989256/5821832/b73c880c-a0d7-11e4-8458-832329b1c48a.png)

test/testServer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ app.use(express.static(__dirname + "/.."));
66

77
app.listen(PORT);
88

9-
console.info("Server ready on port " + PORT + ".");
9+
console.info("Server ready on port " + PORT + ", visit http://127.0.0.1:81/example/private.html");

0 commit comments

Comments
 (0)