Hi,
for the Flash version - just remove the Flash element or the containing div element,
for the HTML5 version - call the 'unload' function of the krpano object,
e.g.
|
Quellcode
|
1
2
3
4
5
|
var krpano = document.getElementById("krpanoSWFObject");
if (krpano && krpano.unload)
{
krpano.unload();
}
|
Best regards,
Klaus