You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by lr...@apache.org on 2008/02/06 09:46:59 UTC

svn commit: r618923 - /incubator/shindig/trunk/features/core/core.js

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 || {};



Re: svn commit: r618923 - /incubator/shindig/trunk/features/core/core.js

Posted by Kevin Brown <et...@google.com>.
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, <lr...@apache.org> 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 || {};
>
>
>