10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
|
(function () {
|
||
|
var module_routes = $ROUTES$;
|
||
|
|
||
|
if (typeof(laroute) != "undefined") {
|
||
|
laroute.add_routes(module_routes);
|
||
|
} else {
|
||
|
contole.log('laroute not initialized, can not add module routes:');
|
||
|
contole.log(module_routes);
|
||
|
}
|
||
|
})();
|