• Resolved soulrider71

    (@soulrider71)


    There is a bug in the plugin (only) for touch devices.

    After closing the tooltip layer the layer is hidden with opacity: 0 and not display:none.

    The problem is now, that other links which are below the invisible layer can′t be clicked any more, even if you can′t see the tooltip layer any more.

    We wrote a litte script / hack that it works again, but it would be fine if there can be an update which solves that problem. I think there must be just one line changed in the code.

    opacity: 0 -> display:none

    If someone else needs the hack now before the bug is fixed, here is the script:

    <script>
    document.addEventListener('click', function (event) {
      if (!event.target.matches('.glossaryLink')) {
        window.setTimeout(function() { document.getElementById("tt").style.display = "none"; }, 300);
      }
    }, false);
    </script>

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Touch Devices Bug Report’ is closed to new replies.