Commit ceb1fa74 authored by Patrick's avatar Patrick
Browse files

revert to ipad detection

parent 7b879ac6
...@@ -132,12 +132,13 @@ vcs.vcm.Framework.getInstance().subscribe("MAP_LOADED", function() { ...@@ -132,12 +132,13 @@ vcs.vcm.Framework.getInstance().subscribe("MAP_LOADED", function() {
}); });
var framework = vcs.vcm.Framework.getInstance(); var framework = vcs.vcm.Framework.getInstance();
if (checkagent() == true && is_touch_device() == true && checkIpad() == true){ // if (checkagent() == true && is_touch_device() == true && checkIpad() == true){
vcs.vcm.Framework.loadConfig("config_mobile.json") // vcs.vcm.Framework.loadConfig("config_mobile.json")
var drop = document.getElementById("dropdownMain") // var drop = document.getElementById("dropdownMain")
drop.classList.add('can-touch') // drop.classList.add('can-touch')
drop.style.display = "none"; // add "can-touch" class to document root using classList API // drop.style.display = "none"; // add "can-touch" class to document root using classList API
} else if (checkagent() == true && framework.isMobile() == false) { // } else
if (checkagent() == true && framework.isMobile() == false) {
vcs.vcm.Framework.loadConfig("config_safari.json") vcs.vcm.Framework.loadConfig("config_safari.json")
} else{ } else{
framework.isMobile() ? vcs.vcm.Framework.loadConfig("config_mobile.json") : vcs.vcm.Framework.loadConfig("config.json") framework.isMobile() ? vcs.vcm.Framework.loadConfig("config_mobile.json") : vcs.vcm.Framework.loadConfig("config.json")
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment