The keyboard shortcut handler component uses the Javascript library Mousetrap (https://github.com/ccampbell/mousetrap).
Installation:
To use the keyboard shortcuts handling, the following JavaScript resources must be included in the header of the used HTML template where all the other JavaScript libraries are defined (e.g. templates/Root.html):
mousetrap.min.js
Third-party library which provide the functionality for the shortcuts handling.
shortcuts.js
Library which binds the shortcuts functionality to the JAXFront Visualizer components.
shortcuts section:
<script language="JavaScript" src="js/jquery/plugins/mousetrap.min.js" type="text/javascript"></script> <script language="JavaScript" src="js/jquery/plugins/shortcuts.js" type="text/javascript"></script>
Configuration
To enable the keyboard shortcuts handling, the shortcuts must be registered in the main HTML template.
shortcuts registration (default config)
<script type="text/javascript" language="JavaScript" defer="defer"> registerShortcuts(); </script>