From 227a18c814a1532a58449db6153e659a184f4966 Mon Sep 17 00:00:00 2001 From: danialfarid Date: Mon, 28 Oct 2013 11:43:19 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a60c649c..723a37c8 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ var MyCtrl = [ '$scope', '$upload', function($scope, $upload) { For the browsers not supporting HTML5 FormData you need [FileAPI](https://github.com/mailru/FileAPI) files **FileAPI.min.js** and **FileAPI.flash.swf** as a polyfill. These files will not be loaded to the client if the browser supports HTML5 FormData (no extra load). **Note**: Flash needs to be installed on the client browser if it doesn't support HTML5. -You can put these two files beside angular-file-upload.js on your server to be loaded automatically on demand or use the following script to set the FileAPI load path (optional): +You can put these two files beside angular-file-upload-shim(.min).js on your server to be loaded automatically on demand or use the following script to set the FileAPI load path (optional): ```script ``` -This needs to be loaded before angular-file-upload.js (place before ``) +This needs to be loaded before angular-file-upload-shim(.min).js (place before ``) You can find the sample server code in Java/GAE [here](https://github.com/danialfarid/angular-file-upload/blob/master/src/com/df/angularfileupload/FileUpload.java).