andrewmcgivery / ionic-ion-imageCacheFactory

A factory to preload images for your Ionic app.
75 stars 26 forks source link

Remove global i variable and support minification without ng-annotate #1

Closed rossmartin closed 9 years ago

rossmartin commented 9 years ago

Thanks for this nifty service. I'm now using it in my own app.

I noticed the code has one global variable - for(i=0;i<urls.length;i++){ ---> for (var i = 0; i < urls.length; i++) {

I also added support for minification for those not using ng-annotate.

andrewmcgivery commented 9 years ago

Thanks!