X-Git-Url: http://git.pond.sub.org/?p=eow;a=blobdiff_plain;f=static%2Fdojo-release-1.1.1%2Fdojox%2Fcollections%2FQueue.js;fp=static%2Fdojo-release-1.1.1%2Fdojox%2Fcollections%2FQueue.js;h=0000000000000000000000000000000000000000;hp=5fa4a5dc0f51dec3350942bd752467d28e27bafa;hb=7beca26e6ea91745cd397ad69ac6e26bb934e683;hpb=bed7f6f60f166f71b2e3a98bb8d1e67c3e501909 diff --git a/static/dojo-release-1.1.1/dojox/collections/Queue.js b/static/dojo-release-1.1.1/dojox/collections/Queue.js deleted file mode 100644 index 5fa4a5d..0000000 --- a/static/dojo-release-1.1.1/dojox/collections/Queue.js +++ /dev/null @@ -1,74 +0,0 @@ -if(!dojo._hasResource["dojox.collections.Queue"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.collections.Queue"] = true; -dojo.provide("dojox.collections.Queue"); -dojo.require("dojox.collections._base"); - -dojox.collections.Queue=function(/* array? */arr){ - // summary - // return an object of type dojox.collections.Queue - var q=[]; - if (arr){ - q=q.concat(arr); - } - this.count=q.length; - this.clear=function(){ - // summary - // clears the internal collection - q=[]; - this.count=q.length; - }; - this.clone=function(){ - // summary - // creates a new Queue based on this one - return new dojox.collections.Queue(q); // dojox.collections.Queue - }; - this.contains=function(/* object */ o){ - // summary - // Check to see if the passed object is an element in this queue - for(var i=0; i