##// END OF EJS Templates
on("destroy",...) -> once("destroy",...) so we don't keep a reference to it, preventing gc...
on("destroy",...) -> once("destroy",...) so we don't keep a reference to it, preventing gc Thanks to Sylvain Corlay for the suggestion.

File last commit:

r17101:945ec056
r18058:c7253b21
Show More
SVG.ipynb
52 lines | 1.1 KiB | text/plain | TextLexer
In [1]:
from IPython.display import SVG
In [2]:
SVG(data='''
<svg height="100" width="100">
    <circle cx="50" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</svg>''')
Out[2]:
No description has been provided for this image