Hi,
what is the best practice to add slides to a deck after the initial call to init?
I would like to add transition slides using d3.js but that currently doesn't work because these new slides are not part of the deck array (when I understand things correctly).
.append("div").attr("class","slide").attr("id","transition1");
I could just reinitialize using $.deck('.slide'); but I am not sure whether this is good practice considering that I use append multiple times.
Thanks!
ps: Thanks for the quick fix of the nested elements bug!