I am trying to load touch screen specific js files using modernizr. I am testing Modernizr.touch. If that returns true I want to load 2 files (Hammer.js and FastClick.js) but I am having trouble loading the two files without getting an error. Loading 1 file works fine but when I add 2 it doesnt load the 2nd one. Does anyone know what is wrong here?
here is my code:
Modernizr.load([{
test: Modernizr.touch,
yep: [
fastClickUrl,
hammerUrl
],
callback: function(){
...
}
}]);
You need to return js files for yep. When true, use a callback to initialize the functions.