dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
10 lines (8 loc) • 442 B
JavaScript
define(["doh/main", "require", "dojo/sniff"], function(doh, require, has){
if(has("ie") === 10 || (!has("ie") && has("trident") > 6)){
// ComboBox is broken on IE10 with the native WindowsPhone theme
doh.registerUrl("dojox.mobile.tests.doh.ComboBoxTests", require.toUrl("./ComboBoxTests.html?theme=iPhone"),999999);
}else{
doh.registerUrl("dojox.mobile.tests.doh.ComboBoxTests", require.toUrl("./ComboBoxTests.html"),999999);
}
});