From 66f25adc0def98f1840b9045a9664267ffa60efa Mon Sep 17 00:00:00 2001 From: Danial Farid Date: Thu, 27 Mar 2014 16:20:12 -0400 Subject: [PATCH 1/4] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 757cc8f8..1d2edce1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ Lightweight Angular JS directive to upload files. Features: * Uses regular `$http` to upload (with shim for non-HTML5 browsers) so all angular `$http` features are available * Supports upload progress * Supports cancel/abort upload while in progress -* Supports File drag and drop +* Supports File drag and drop (HTML5 only) +* Supports Directory drag and drop (webkit only) * All non-HTML5 code is in a separate shim file and could be easily removed if you only supports HTML5. (It is needed for progress event though) * Flash FileAPI will be loaded on demand for non-HTML5 FormData browsers so no extra load for HTML5 browsers. * `$upload` method can be configured to be either `POST` or `PUT` for HTML5 browsers. From 7557f12d7784e728b71fb108ff1a93649965247a Mon Sep 17 00:00:00 2001 From: Danial Farid Date: Thu, 27 Mar 2014 16:31:08 -0400 Subject: [PATCH 2/4] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 1d2edce1..970528c3 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,17 @@ Download latest release from [here](https://github.com/danialfarid/angular-file- bower install ng-file-upload ``` +Make sure you have the scripts in the EXACT same order: +``` +... + +... + +... + +... +``` + You can find the sample server code in Java/GAE [here](https://github.com/danialfarid/angular-file-upload/blob/master/demo/src/com/df/angularfileupload/FileUpload.java). If you use this module you can give it a thumbs up at [http://ngmodules.org/modules/angular-file-upload](http://ngmodules.org/modules/angular-file-upload). From 7727c528e0c514d5f74c7fc08b26c0e4cec906dc Mon Sep 17 00:00:00 2001 From: Danial Farid Date: Thu, 27 Mar 2014 16:31:56 -0400 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 970528c3..63e85147 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Download latest release from [here](https://github.com/danialfarid/angular-file- bower install ng-file-upload ``` -Make sure you have the scripts in the EXACT same order: +Make sure you load the scripts EXACTLY in this order: ``` ... From 63c4669113317e526cad594b247430c3b768b482 Mon Sep 17 00:00:00 2001 From: Danial Farid Date: Thu, 27 Mar 2014 16:33:28 -0400 Subject: [PATCH 4/4] Update README.md --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 63e85147..32ee627c 100644 --- a/README.md +++ b/README.md @@ -120,15 +120,11 @@ Download latest release from [here](https://github.com/danialfarid/angular-file- bower install ng-file-upload ``` -Make sure you load the scripts EXACTLY in this order: +Make sure you to load the scripts in this order as described in the Usage: ``` -... -... -... -... ``` You can find the sample server code in Java/GAE [here](https://github.com/danialfarid/angular-file-upload/blob/master/demo/src/com/df/angularfileupload/FileUpload.java).