Beta fix for binding of click events when using the render function as discussed in issue #188. (Try num 2)

This commit is contained in:
knsv
2015-07-18 00:40:42 +02:00
parent 71d4113ecf
commit 1b7ad1fc38
7 changed files with 8 additions and 8 deletions

2
dist/mermaid.js vendored
View File

@@ -32203,7 +32203,7 @@ var render = function(id, txt, cb, container){
}
if(typeof cb !== 'undefined'){
cb(d3.select('#d'+id).node().innerHTML);
cb(d3.select('#d'+id).node().innerHTML,graph.bindFunctions);
}else{
log.warn('CB = undefined');