chore(cleanup): remove unused code causing warnings

This commit is contained in:
Adam Bradley
2017-12-15 11:06:06 -06:00
parent c62322fced
commit 8a2f303dd4

View File

@@ -9,23 +9,4 @@ export class RouteLink {
// The instance of the router
@Prop() router: any;
handleClick(e: any) {
console.log('Route link click', e);
/*
router.navigateTo(this.url)
*/
}
render() {
/*
const router = document.querySelector(this.router);
const match = router.match
console.log(` <ion-route-link> Rendering route ${this.url}`, router, match);
return (
<a onClick={this.handleClick.bind(this)}><slot></slot></a>
);
*/
}
}