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.
|
// Only load hammer.js when in a browser environment
|
|
// (loading hammer.js in a node.js environment gives errors)
|
|
if (typeof window !== 'undefined') {
|
|
module.exports = window['Hammer'] || require('hammerjs');
|
|
}
|
|
else {
|
|
module.exports = function () {
|
|
throw Error('hammer.js is only available in a browser, not in node.js.');
|
|
}
|
|
}
|