From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojox/collections/Queue.js | 74 ---------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 includes/js/dojox/collections/Queue.js (limited to 'includes/js/dojox/collections/Queue.js') diff --git a/includes/js/dojox/collections/Queue.js b/includes/js/dojox/collections/Queue.js deleted file mode 100644 index 5fa4a5d..0000000 --- a/includes/js/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