add underscore in main.js

This commit is contained in:
lh_wang
2015-08-09 15:43:18 +08:00
parent a318032cf0
commit 4f0e17eaff
+2 -1
View File
@@ -5,6 +5,7 @@ requirejs.config({
requirejs([ requirejs([
'lib/fastclick', 'lib/fastclick',
'lib/underscore',
'home/map', 'home/map',
'home/dashboard', 'home/dashboard',
'home/router', 'home/router',
@@ -12,6 +13,6 @@ requirejs([
'home/tools', 'home/tools',
'home/search' 'home/search'
], ],
function(fastclick, map, router) { function(fastclick,underscore, map, router) {
fastclick(document.body); fastclick(document.body);
}); });