├── .gitignore ├── LICENSE ├── README.md ├── plugin.xml ├── src ├── android │ └── CollectionRepeatImage.java └── ios │ ├── CollectionRepeatImage.h │ ├── CollectionRepeatImage.m │ ├── NSData+ImageContentType.h │ ├── NSData+ImageContentType.m │ ├── SDImageCache.h │ ├── SDImageCache.m │ ├── SDWebImageCompat.h │ ├── SDWebImageCompat.m │ ├── SDWebImageDecoder.h │ ├── SDWebImageDecoder.m │ ├── SDWebImageDownloader.h │ ├── SDWebImageDownloader.m │ ├── SDWebImageDownloaderOperation.h │ ├── SDWebImageDownloaderOperation.m │ ├── SDWebImageManager.h │ ├── SDWebImageManager.m │ ├── SDWebImageOperation.h │ ├── SDWebImagePrefetcher.h │ ├── SDWebImagePrefetcher.m │ ├── UIImage+GIF.h │ ├── UIImage+GIF.m │ ├── UIImage+MultiFormat.h │ ├── UIImage+MultiFormat.m │ ├── UIImage+ResizeMagick.h │ ├── UIImage+ResizeMagick.m │ ├── UIImage+WebP.h │ ├── UIImage+WebP.m │ ├── UIImageView+WebCache.h │ ├── UIImageView+WebCache.m │ ├── UIView+WebCacheOperation.h │ └── UIView+WebCacheOperation.m └── www ├── CollectionRepeatImage.js └── CollectionRepeatImageOptions.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/README.md -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/CollectionRepeatImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/android/CollectionRepeatImage.java -------------------------------------------------------------------------------- /src/ios/CollectionRepeatImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/CollectionRepeatImage.h -------------------------------------------------------------------------------- /src/ios/CollectionRepeatImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/CollectionRepeatImage.m -------------------------------------------------------------------------------- /src/ios/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/NSData+ImageContentType.h -------------------------------------------------------------------------------- /src/ios/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/NSData+ImageContentType.m -------------------------------------------------------------------------------- /src/ios/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDImageCache.h -------------------------------------------------------------------------------- /src/ios/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDImageCache.m -------------------------------------------------------------------------------- /src/ios/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageCompat.h -------------------------------------------------------------------------------- /src/ios/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageCompat.m -------------------------------------------------------------------------------- /src/ios/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageDecoder.h -------------------------------------------------------------------------------- /src/ios/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageDecoder.m -------------------------------------------------------------------------------- /src/ios/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageDownloader.h -------------------------------------------------------------------------------- /src/ios/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageDownloader.m -------------------------------------------------------------------------------- /src/ios/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /src/ios/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /src/ios/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageManager.h -------------------------------------------------------------------------------- /src/ios/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageManager.m -------------------------------------------------------------------------------- /src/ios/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImageOperation.h -------------------------------------------------------------------------------- /src/ios/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /src/ios/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /src/ios/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+GIF.h -------------------------------------------------------------------------------- /src/ios/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+GIF.m -------------------------------------------------------------------------------- /src/ios/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /src/ios/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /src/ios/UIImage+ResizeMagick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+ResizeMagick.h -------------------------------------------------------------------------------- /src/ios/UIImage+ResizeMagick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+ResizeMagick.m -------------------------------------------------------------------------------- /src/ios/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+WebP.h -------------------------------------------------------------------------------- /src/ios/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImage+WebP.m -------------------------------------------------------------------------------- /src/ios/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImageView+WebCache.h -------------------------------------------------------------------------------- /src/ios/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIImageView+WebCache.m -------------------------------------------------------------------------------- /src/ios/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /src/ios/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/src/ios/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /www/CollectionRepeatImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/www/CollectionRepeatImage.js -------------------------------------------------------------------------------- /www/CollectionRepeatImageOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallzee/cordova-collection-repeat-image-plugin/HEAD/www/CollectionRepeatImageOptions.js --------------------------------------------------------------------------------