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!




--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Build-script-Unexpected-token-var-tp7582847p7582869.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
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