Sencha Touch 2.2 does not work on Windows Phone 8

I downloaded the new ST 2.2 and the new Cmd tools generated by the application. I did not make any changes to the generated application. When I launch the page in IE10, I only see a blue screen with three white rectangles. I tried this on the Windows 8 and Windows Phone 8 browser. Both failed.

Am I doing something wrong?

+4
source share
1 answer

Add the code below to app.js

The path must be in the sencha touch js files folder

Ext.Loader.setConfig({ enabled: true, disableCaching: false, paths: { "Ext": 'lib/touch',// important to load sencha in windows phone } }); 
0
source

All Articles