This isn't fixing the issue. Core should *never* be output out of order, and if it is then that's the real bug. This sounds like it might be related to the JDK 1.5 / 1.6 difference that I brought up last week. Can you reproduce?
core is the first dependency in the graph, and core.js is the first file in core, so it should always wind up being the first file loaded. ~Kevin On Feb 6, 2008 12:46 AM, <[EMAIL PROTECTED]> wrote: > Author: lryan > Date: Wed Feb 6 00:46:58 2008 > New Revision: 618923 > > URL: http://svn.apache.org/viewvc?rev=618923&view=rev > Log: > Fix issue where core feature is output out-of-order > > Modified: > incubator/shindig/trunk/features/core/core.js > > Modified: incubator/shindig/trunk/features/core/core.js > URL: > http://svn.apache.org/viewvc/incubator/shindig/trunk/features/core/core.js?rev=618923&r1=618922&r2=618923&view=diff > > ============================================================================== > --- incubator/shindig/trunk/features/core/core.js (original) > +++ incubator/shindig/trunk/features/core/core.js Wed Feb 6 00:46:58 2008 > @@ -1 +1 @@ > -var gadgets = {}; > +var gadgets = gadgets || {}; > > >

