vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
337 B

  1. // Only load hammer.js when in a browser environment
  2. // (loading hammer.js in a node.js environment gives errors)
  3. if (typeof window !== 'undefined') {
  4. module.exports = window['Hammer'] || require('hammerjs');
  5. }
  6. else {
  7. module.exports = function () {
  8. throw Error('hammer.js is only available in a browser, not in node.js.');
  9. }
  10. }