Files
Andrew 14ecc7178b wip
2015-04-25 13:07:53 -05:00

14 lines
289 B
JavaScript

import {Component, View as NgView, Inject, Parent, NgElement} from 'angular2/angular2'
import {Log} from 'ionic/util'
/**
* A simple routing system that detects a URL and calls
* a handler.
*/
export class Router {
static open(url) {
Log.log('Router: open from url', url)
}
}