Hello - great job on this; I've really enjoyed working with it. One issue I'm running into that I cannot figure out is focusing on inputs when in mobile. It seems like the tap event is being overridden by a different event. It works fine in desktop, but will not focus on inputs when viewed in mobile. The files are treeleafs. And the folders are tree branches. Any ideas what's going on?
isLeaf: function(node) {
if (node.placeHolder === 'true') return false;
if (node.item.objecttype === 'folder') return false;
if (node.item.objecttype === 'file') return true;
}
Hello - great job on this; I've really enjoyed working with it. One issue I'm running into that I cannot figure out is focusing on inputs when in mobile. It seems like the tap event is being overridden by a different event. It works fine in desktop, but will not focus on inputs when viewed in mobile. The files are treeleafs. And the folders are tree branches. Any ideas what's going on?