The NIMS GUI makes use of double-click events to show the pop-overs, such as the image viewer. Many touch devices such as iphone, ipad, and android devices do not have a double click and thus cannot access the pop overs. Options to fix include:
emulate a double click when user taps the item twice. Note that real double-tap events are usually intercepted by the mobile browser (e.g., on chrome they zoom in).
intercept the long-tap event (not sure this is possible-- browsers also seem to intercept these)
Detect when a device does not support double-click and just open popups on single click (but that might be too annoying)
The NIMS GUI makes use of double-click events to show the pop-overs, such as the image viewer. Many touch devices such as iphone, ipad, and android devices do not have a double click and thus cannot access the pop overs. Options to fix include: