We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6825a3d commit fc1d351Copy full SHA for fc1d351
1 file changed
README.md
@@ -7,9 +7,9 @@ progress events, and a plugin model to assist with preloading in other libraries
7
## Example
8
9
```javascript
10
-var preload = new createjs.LoadQueue();
+var preload = new createjs.LoadQueue(false);
11
preload.addEventListener("fileload", handleFileComplete);
12
-preload.loadFile('http://createjs.com/images/404/gBot-confused.jpg');
+preload.loadFile('http://createjs.com/assets/images/png/createjs-badge-dark.png');
13
function handleFileComplete(event) {
14
document.body.appendChild(event.result);
15
}
0 commit comments