On 02/20/2013 12:37 PM, arsousa wrote:
> Thanks for the tips.
> I found where the problem are, but I don't understand why that cause an
> error (after build process), because there is no syntax error.
> The issue was in the contribution qxProtovis.Panel
>
>      if (position(row)) for (var i = 0; i < row.length; i++) {
>        *row[i].dy += h;*
>      } else for (var i = 0; i < row.length; i++) {
>        row[i].dx += w;
>      }
>
> I have to remove the semicolon before } else, like this:
>
>      if (position(row)) for (var i = 0; i < row.length; i++) {
>        *row[i].dy += h*
>      } else for (var i = 0; i < row.length; i++) {
>        row[i].dx += w;
>      }
>
> And now build .js works fine!

That's surprising. Please do file a bug anyway, we need to look into 
that, and add this finding about qxProtovis in a comment.

T.


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to