rename to pathjs

This commit is contained in:
Lokesh Peta
2015-07-30 09:54:07 +01:00
parent e4ea80a783
commit f9694258d2
2 changed files with 2 additions and 2 deletions
+33
View File
@@ -0,0 +1,33 @@
/// <reference path="pathjs.d.ts" />
Path.map("/test/:id")
.to(()=>{ });
Path.listen();
//History
Path.history.listen(() =>{
});
var initial = Path.history.initial;
//Core
var route = Path.core.route("/test/:id");
function test1() {
}
route.enter(test1);
function test2() {
}
var funs = new Array<Function>();
funs.push(test1);
funs.push(test2);
route.enter(funs);