DaHaiz / ngFlowchart

ngFlowchart enables drag&drop modelling of graphs in web applications
http://one-logic.github.io/ngFlowchart/dist/
MIT License
103 stars 64 forks source link

Not working for custom symbols #40

Open upmauro opened 8 years ago

upmauro commented 8 years ago

Directive not working when use custom angular

app.config(function($interpolateProvider, $httpProvider) {
        $interpolateProvider.startSymbol('[[');
        $interpolateProvider.endSymbol(']]');
    });

This is necessary because i'm using Django and the template engine uses the same symbols of angular {{ and }}.

I will try send PR later.

Thanks.