Skip to content

Commit fc1d351

Browse files
committed
Fixed the example in README.md
1 parent 6825a3d commit fc1d351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ progress events, and a plugin model to assist with preloading in other libraries
77
## Example
88

99
```javascript
10-
var preload = new createjs.LoadQueue();
10+
var preload = new createjs.LoadQueue(false);
1111
preload.addEventListener("fileload", handleFileComplete);
12-
preload.loadFile('http://createjs.com/images/404/gBot-confused.jpg');
12+
preload.loadFile('http://createjs.com/assets/images/png/createjs-badge-dark.png');
1313
function handleFileComplete(event) {
1414
document.body.appendChild(event.result);
1515
}

0 commit comments

Comments
 (0)