-
19 Nov 2012 10:52 AM #21
Doesn't apply to me
Doesn't apply to me
I use ST2.1, Sencha Architect, and PhoneGap Build. I'm afraid that post is very unrelated to my workflow.
-
19 Nov 2012 11:14 AM #22
I'm using ST2.1 (final) with Cordova 2.2.0 and it works fine. I'm not using sencha-touch-all.js, but sencha-touch.js and the rest of necessary ST2.1 files is added to app.js during build process (sencha app build testing/package).
-
19 Nov 2012 11:18 AM #23
Then..
Then..
..this problem does not apply to you. It is a problem that occurs if and only if you load sencha-touch-all.js, and phonegap.js.
-
19 Nov 2012 7:03 PM #24
So we have to manually rip out Ext.device to run with phonegap? That seems extremely broken.
-
19 Nov 2012 8:34 PM #25
Broken
Broken
+1 Broken here too.
/**
* @author Chris Scott
* @business www.transistorsoft.com
* @rate $120USD / hr; training $500USD / day / developer (5 dev min)
*
* @SenchaDevs http://senchadevs.com/developers/transistor-software
* @twitter http://twitter.com/#!/christocracy
* @github https://github.com/christocracy
*/
-
20 Nov 2012 10:26 AM #26
It's all here..
It's all here..
It's all here.. main solution thus far (if you are using the all.js like us): http://www.sencha.com/forum/showthre....0.1-to-ST-2.1
-
3 Jan 2013 11:14 PM #27
Hi,
I have fixed this issue, Just i have changed the code in the sencha-touch-all-debug.js line 69353.
The code in the sencha-touch-all-debug.js
I have changed toCode:if (Ext.Viewport.isReady) { this.onReady(); } else { Ext.Viewport.on('ready', this.onReady, this, {single: true}); }
Code:if(Ext.Viewport) { if (Ext.Viewport.isReady) { this.onReady(); } else { Ext.Viewport.on('ready', this.onReady, this, {single: true}); } }
Wait! Looks like we don't have enough information to add this to bug database. Please follow this template bug format.


Reply With Quote