Skip to content

Instantly share code, notes, and snippets.

View seanculver's full-sized avatar

Sean Culver seanculver

View GitHub Profile
@migurski
migurski / image-queue.js
Created July 25, 2012 20:33
Image Queue
function ImageQueue()
{
var closedRequests = {},
queueList = [],
queueByHref = {},
numOpenRequests = 0,
openRequests = {};
function addImage(href, onload)
{