Skip to content

Commit aab6a65

Browse files
authored
Update Readme to point to HTTPS URLs of cloudinary.com
And adding demo link and fixing the support forums link.
1 parent a23cf6f commit aab6a65

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,14 @@ The following example from the sample projects demonstrates setting the opacity
144144
These directives transform the given URI to a cloudinary URL. For example:
145145

146146
```html
147-
<img clSrc="http://cloudinary.com/images/logo.png" type="fetch" fetch-format="auto" quality="auto">
147+
<img clSrc="https://cloudinary.com/images/logo.png" type="fetch" fetch-format="auto" quality="auto">
148148
```
149149

150150
Will be compiled by Angular to:
151151

152152
```html
153-
<img clSrc="http://cloudinary.com/images/logo.png" fetch-format="auto" quality="auto" type="fetch" ng-reflect-clSrc="http://cloudinary.com/images/logo.png"
154-
src="http://res.cloudinary.com/{your_cloud_name}/image/fetch/f_auto,q_auto/http://cloudinary.com/images/logo.png">
153+
<img clSrc="https://cloudinary.com/images/logo.png" fetch-format="auto" quality="auto" type="fetch" ng-reflect-clSrc="https://cloudinary.com/images/logo.png"
154+
src="http://res.cloudinary.com/{your_cloud_name}/image/fetch/f_auto,q_auto/https://cloudinary.com/images/logo.png">
155155
```
156156

157157
See additional usage examples [here](src/cloudinary-image-source.directive.spec.ts) and in the sample projects.
@@ -172,7 +172,7 @@ The samples differ by their bundling solution and upload implementation:
172172
* Uses [ng2-file-upload](https://github.com/valor-software/ng2-file-upload) for uploading files using an opensource file uploader
173173
* Uses [Webpack](https://webpack.github.io) for bundling and serving the application
174174
* [Photo album sample app with jQuery](samples/photo_album_with_jquery)
175-
* Uses [Cloudinary's jQuery plugin](http://cloudinary.com/blog/direct_upload_made_easy_from_browser_or_mobile_app_to_the_cloud#direct_uploading_from_the_browser_using_jquery) for uploading files using jQuery and blueimp.
175+
* Uses [Cloudinary's jQuery plugin](https://cloudinary.com/blog/direct_upload_made_easy_from_browser_or_mobile_app_to_the_cloud#direct_uploading_from_the_browser_using_jquery) for uploading files using jQuery and blueimp.
176176
* Uses [SystemJS](https://github.com/systemjs/systemjs) for bundling the application and [lite-server](https://github.com/johnpapa/lite-server) for serving the application.
177177
* [Photo Album AOT compilation](samples/photo_album_aot)
178178
* Demonstrates usage of Cloudinary SDK in an [Angular AOT](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html) application
@@ -203,9 +203,10 @@ Please consult with the respective README file of each sample for usage and addi
203203
Additional resources are available at:
204204

205205
* [Website](https://cloudinary.com)
206+
* [Interactive demo](https://demo.cloudinary.com/default)
206207
* [Documentation](https://cloudinary.com/documentation)
207-
* [Knowledge Base](https://support.cloudinary.com/forums)
208-
* [Documentation for jQuery integration](https://cloudinary.com/documentation/jquery_integration)
208+
* [Knowledge Base](https://support.cloudinary.com/hc/en-us)
209+
* [Documentation for Angular integration](https://cloudinary.com/documentation/angular_integration)
209210
* [Image upload documentation](https://cloudinary.com/documentation/upload_images)
210211
* [Image transformations documentation](https://cloudinary.com/documentation/image_transformations)
211212

0 commit comments

Comments
 (0)