Skip to content

Instantly share code, notes, and snippets.

@gowhari
Created July 13, 2020 18:57
Show Gist options
  • Save gowhari/0c8136c76c3dbd84b9b0d750b8509ffa to your computer and use it in GitHub Desktop.
Save gowhari/0c8136c76c3dbd84b9b0d750b8509ffa to your computer and use it in GitHub Desktop.
Draw.loadPlugin(function(ui) {
console.log("iman: Draw.loadPlugin");
var graphCreateSvgImageExport = Graph.prototype.createSvgImageExport;
Graph.prototype.createSvgImageExport = function() {
console.log("iman: Graph.prototype.createSvgImageExport");
var exp = graphCreateSvgImageExport.apply(this, arguments);
return exp;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment