我正在使用最新的 sencha touch 库(2.2.1)。我试图在 IE10 中加载默认主题,即 sencha-touch.css(苹果外观),而 IE 10 只是崩溃了。
我在 Kitchen Sink 示例中看到了这一点:
http://docs.sencha.com/touch/2.2.1/touch-build/examples/kitchensink/index.html?platform=chrome
可以从主题->“煎茶”选项中进行选择。
有谁知道他们是否做一些不同的事情?
我正在使用最新的 sencha touch 库(2.2.1)。我试图在 IE10 中加载默认主题,即 sencha-touch.css(苹果外观),而 IE 10 只是崩溃了。
我在 Kitchen Sink 示例中看到了这一点:
http://docs.sencha.com/touch/2.2.1/touch-build/examples/kitchensink/index.html?platform=chrome
可以从主题->“煎茶”选项中进行选择。
有谁知道他们是否做一些不同的事情?
You need to update your app.json to only load that theme on all platforms (or just IE10). You can do this by modifying the CSS property:
"css": [
{
"path": "resources/css/sencha-touch.css",
"platform": ["chrome", "safari", "android", "firefox", "ie10"],
"theme": "Default",
"update": "delta"
}
],