Created
April 23, 2009 19:14
-
-
Save lmarburger/100700 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I'm using AS3 like it was JS and you can't stop me. | |
_waitingQueue | |
.filter(function(obj:Object, index:int, array:Array) { | |
return obj.loader == _loader; | |
}) | |
.forEach(function(obj:Object, index:int, array:Array) { | |
_waitingQueue.splice(_waitingQueue.indexOf(obj), 1); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment