无法运行ember serve因为jQuery意外令牌

时间:2016-04-11 20:52:39

标签: jquery ember.js ember-cli

我安装了ember-cli和node.js

输入@Override public boolean onTouchEvent(MotionEvent event) { if (isInsideCircle(event.getX(), event.getY())) { generateRandom(); invalidate(); } return super.onTouchEvent(event); } boolean isInsideCircle(float xPoint, float yPoint) { float dx = (x - xPoint); float dxPow = (float) Math.pow(dx, 2); float dy = (y - yPoint); float dyPow = (float) Math.pow(dy, 2); float radPow = (float) Math.pow(r, 2); return (dxPow + dyPow) < radPow || (dxPow + dyPow == radPow); } 之后

因为jQuery而卡住了。

ember serve

如何解决这个问题?

我在SyntaxError: color-app/static/lib/jquery/src/intro.js: Unexpected token (45:0) // you try to trace through "use strict" call chains. (#13335) //"use strict"; 命令后没有做任何事。

我的包版本..

ember new

0 个答案:

没有答案