Hi
First of all great job, very nice and useful plugin!
In my application I using Grunt with grunt uglify.
All looks good, but on load I got a lot of ajax error on cosole.
After deep investigation I found that inside function load in for in loop it takes Array.prototype functions and pushes them inside ajax load urls:
On debug mode you can see that array length is 1, but the code continue to take prototype function:
The result is many errors in console of ajax failed requests:
I around the array prototype functions on the PS.
I found that if I replace for in to array.foreach this problem is not happend
Hi First of all great job, very nice and useful plugin! In my application I using Grunt with grunt uglify. All looks good, but on load I got a lot of ajax error on cosole. After deep investigation I found that inside function load in for in loop it takes Array.prototype functions and pushes them inside ajax load urls:
On debug mode you can see that array length is 1, but the code continue to take prototype function: The result is many errors in console of ajax failed requests: I around the array prototype functions on the PS. I found that if I replace for in to array.foreach this problem is not happend
For your review