UNPKG

can

Version:

MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.

29 lines (25 loc) 532 B
define([ "./router/RouterBase" ], function(RouterBase){ // module: // dojo/router /*===== return { // summary: // A singleton-style instance of dojo/router/RouterBase. See that // module for specifics. // example: // | router.register("/widgets/:id", function(evt){ // | // If "/widgets/3" was matched, // | // evt.params.id === "3" // | xhr.get({ // | url: "/some/path/" + evt.params.id, // | load: function(data){ // | // ... // | } // | }); // | }); }; =====*/ return new RouterBase({}); });