Skip to content

Commit cd07213

Browse files
committed
Update README.md
1 parent b51a296 commit cd07213

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ var MyCtrl = [ '$scope', '$upload', function($scope, $upload) {
6868
//.error(...)
6969
//.then(success, error, progress);
7070
}
71-
// $scope.upload = $upload.upload({...}) alternative way of uploading, sends the the file content directly with the same content-type of the file. Could be used to upload files to CouchDB, imgur, etc... for HTML5 FileReader browsers.
71+
/* alternative way of uploading, send the file binary with the file's content-type.
72+
Could be used to upload files to CouchDB, imgur, etc... html5 FileReader is needed.
73+
It could also be used to monitor the progress of a normal http post/put request with large data*/
74+
// $scope.upload = $upload.upload({...})
7275
};
7376
}];
7477
```

0 commit comments

Comments
 (0)