Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Added missing notes to ImageLoader #14083

Merged
merged 1 commit into from May 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/api/loaders/ImageLoader.html
Expand Up @@ -12,9 +12,9 @@ <h1>[name]</h1>

<p class="desc">
A loader for loading an [page:Image].

This uses the [page:FileLoader] internally for loading files, and is used internally by the
[page:CubeTextureLoader], [page:ObjectLoader] and [page:TextureLoader].
[page:CubeTextureLoader], [page:ObjectLoader] and [page:TextureLoader].<br/>
Unlike [page:FileLoader], [name] does not avoid multiple concurrent requests to the same URL.
</p>

<h2>Example</h2>
Expand Down Expand Up @@ -88,7 +88,7 @@ <h3>[method:null load]( [param:String url], [param:Function onLoad], [param:Func
[page:String url] — the path or URL to the file. This can also be a
[link:https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs Data URI].<br />
[page:Function onLoad] — Will be called when load completes. The argument will be the loaded [page:Image image].<br />
[page:Function onProgress] — Will be called while load progresses. The argument will be the progress event.<br />
[page:Function onProgress] — This callback function is currently not supported.<br />
[page:Function onError] — Will be called when load errors.<br />
</p>
<p>
Expand Down