Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.

Commit

Permalink
chore: updated build file
Browse files Browse the repository at this point in the history
  • Loading branch information
justindujardin committed Dec 19, 2015
1 parent f1134d2 commit 2284af5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ export class DemosApp {
constructor(http: Http) {
http.get('public/meta.json')
.subscribe((res: Response) => {
this.meta = res.json();
// HACKS: use to filter down to a single example for testing
//let data = res.json();
//let results = [];
//data.forEach((d) => {
// if(d.name === 'Toolbar'){
// if(d.name === 'Button'){
// results.push(d);
// }
//});
//this.meta = results;

this.meta = res.json();
console.log(this.meta);
});
}
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@
"ng2-material/components/radio/radio_dispatcher.ts",
"ng2-material/components/sidenav/sidenav.ts",
"ng2-material/components/switcher/switch.ts",
"ng2-material/components/tabs/tabs.ts",
"ng2-material/components/toolbar/toolbar.ts",
"ng2-material/core/key_codes.ts",
"ng2-material/core/util/animate.ts",
"ng2-material/core/util/ink.ts",
"ng2-material/core/util/util.ts"
]
}

0 comments on commit 2284af5

Please sign in to comment.