Hi Tan,
Thanks for your plugin.
I've just one case that doesn't seems to work for me.:
I load a file like written below on a "<g>", all is ok since I'm trying to move an object,
The drag of loaded object and the panning of the view seems to be uncompatible.
Is there a workaround ?
And finally : what is the way of setting options in the plugin ?
<body>
<script>
var paper = Snap(15000,9000);
var bigCircle = paper.circle(150, 150, 100);
paper.zpd();
Snap.load("../data/exemple1-0.svg", function (f) {
var g = f.select("g");
paper.select("g").append(g);
g.drag(); // <<< HERE IS THE PROBLEM
});
</script>
</body>