Commit 6b97756c authored by Patrick's avatar Patrick
Browse files

put ipad detection back on the menu

parent ee5ef3fd
...@@ -132,13 +132,12 @@ vcs.vcm.Framework.getInstance().subscribe("MAP_LOADED", function() { ...@@ -132,13 +132,12 @@ 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 } else if (checkagent() == true && framework.isMobile() == false) {
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