Created
July 13, 2020 18:57
-
-
Save gowhari/0c8136c76c3dbd84b9b0d750b8509ffa to your computer and use it in GitHub Desktop.
Revisions
-
gowhari created this gist
Jul 13, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ 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; }; });