Here is my error from XCode, perhaps someone can help with it.
2013-09-19 12:46:23.372 Ejecta[11576:907] ReferenceError: Can't find variable: jQuery at line 16464 in c2runtime.js
2013-09-19 12:46:27.730 Ejecta[11576:907] ReferenceError: Can't find variable: jQuery at line 16464 in c2runtime.js
2013-09-19 12:46:29.053 Ejecta[11576:907] ReferenceError: Can't find variable: jQuery at line 16464 in c2runtime.js
2013-09-19 12:46:29.553 Ejecta[11576:907] ReferenceError: Can't find variable: jQuery at line 16464 in c2runtime.js
2013-09-19 12:46:29.804 Ejecta[11576:907] ReferenceError: Can't find variable: jQuery at line 16464 in c2runtime.js
And the relevant lines in c2runtime.js...
16460 instanceProto.onTouchStart = function (info)
16461 {
16462 if (info.preventDefault)
16463 info.preventDefault();
16464 var offset = this.runtime.isDomFree ? dummyoffset : jQuery(this.runtime.canvas).offset();
16465 var nowtime = cr.performance_now();
16466 var i, len, t, j;
16467 for (i = 0, len = info.changedTouches.length; i < len; i++)
16468 {
16469 t = info.changedTouches;
16470 j = this.findTouch(t["identifier"]);
16471 if (j !== -1)
16472 continue;
16473 var touchx = t.pageX - offset.left;
16474 var touchy = t.pageY - offset.top;
16475 this.trigger_index = this.touches.length;
16476 this.trigger_id = t["identifier"];
16477 this.touches.push({ time: nowtime,
16478 x: touchx,
16479 y: touchy,
16480 lasttime: nowtime,
16481 lastx: touchx,
16482 lasty: touchy,
16483 "id": t["identifier"],
16484 startindex: this.trigger_index
16485 });
16486 this.runtime.trigger(cr.plugins_.Touch.prototype.cnds.OnNthTouchStart, this);
16487 this.runtime.trigger(cr.plugins_.Touch.prototype.cnds.OnTouchStart, this);
16488 this.curTouchX = touchx;
16489 this.curTouchY = touchy;
16490 this.runtime.trigger(cr.plugins_.Touch.prototype.cnds.OnTouchObject, this);
16491 }
16492 };