SampleModule/Public/js/laroute.js
2018-09-23 08:04:03 -07:00

15 lines
No EOL
346 B
JavaScript

(function () {
var module_routes = [
{
"uri": "samplemodule",
"name": "samplemodule_index"
}
];
if (typeof(laroute) != "undefined") {
laroute.add_routes(module_routes);
} else {
contole.log('laroute not initialized, can not add module routes:');
contole.log(module_routes);
}
})();