diff --git a/src/components/router/router.js b/src/components/router/router.js new file mode 100644 index 0000000000..4d47059ac6 --- /dev/null +++ b/src/components/router/router.js @@ -0,0 +1,13 @@ +import {Component, Template, Inject, Parent, NgElement} from 'angular2/angular2' +import {Log} from 'ionic2/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) + } +} +