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.
 
 
 
 
 

18 lines
507 B

var svgPanZoom = require("./svg-pan-zoom.js");
// UMD module definition
(function(window, document) {
// AMD
if (typeof define === "function" && define.amd) {
define("svg-pan-zoom", function() {
return svgPanZoom;
});
// CMD
} else if (typeof module !== "undefined" && module.exports) {
module.exports = svgPanZoom;
// Browser
// Keep exporting globally as module.exports is available because of browserify
window.svgPanZoom = svgPanZoom;
}
})(window, document);