mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
18 lines
273 B
JavaScript
18 lines
273 B
JavaScript
requirejs.config({
|
|
baseUrl: 'js'
|
|
});
|
|
|
|
|
|
requirejs([
|
|
'lib/fastclick',
|
|
'lib/underscore',
|
|
'home/map',
|
|
'home/dashboard',
|
|
'home/router',
|
|
'home/info',
|
|
'home/tools',
|
|
'home/search'
|
|
],
|
|
function(fastclick,underscore, map, router) {
|
|
fastclick(document.body);
|
|
}); |