Skip to content

Commit

Permalink
Merge 6d337c6 into 9715135
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz committed Feb 29, 2016
2 parents 9715135 + 6d337c6 commit 172b707
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
15 changes: 15 additions & 0 deletions doc/asset/devtools-welcome.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
var welcomeText = (
' ____ _ ____ \n'+
'| _ \\ __ __ | / ___| \n'+
'| |_) |\\ \\/ / | \\___ \\ \n'+
'| _ < > < |_| |___) | \n'+
'|_| \\_\\/_/\\_\\___/|____/ \n'+
'\nTry this code to get started experimenting with RxJS:\n'+
'\n Rx.Observable.interval(500).take(4)'+
'.subscribe(function (x) { console.log(x) });\n'
);
if (console.info) {
console.info(welcomeText);
} else {
console.log(welcomeText);
}
2 changes: 2 additions & 0 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ This is a rewrite of [Reactive-Extensions/RxJS](https://github.com/Reactive-Exte
*Read the Manual on Observables, Observer, Subject, etc*
### [» Full reference](./identifiers.html)
*Read detailed documentation on each operator*

**Hint: open your DevTools to experiment with RxJS.**
4 changes: 4 additions & 0 deletions esdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"undocumentIdentifier": false,
"title": "RxJS",
"styles": ["./doc/styles/main.css"],
"scripts": [
"./dist/global/Rx.umd.min.js",
"./doc/asset/devtools-welcome.js"
],
"index": "./doc/index.md",
"manual": {
"asset": "./doc/asset",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build_perf": "npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf",
"build_test": "rm -rf dist/ && npm run lint && npm run build_cjs && jasmine",
"build_cover": "rm -rf dist/ && npm run lint && npm run build_cjs && npm run cover",
"build_docs": "npm run build_es6 && npm run tests2png && esdoc -c esdoc.json",
"build_docs": "npm run build_es6 && npm run build_global && npm run tests2png && esdoc -c esdoc.json",
"publish_docs": "./publish_docs.sh",
"lint_perf": "eslint perf/",
"lint_spec": "eslint spec/",
Expand Down

0 comments on commit 172b707

Please sign in to comment.