Comment #1 on issue 62 by ryandesign.com: Hello World example shows canviz
div doesn't properly unclear itself
http://code.google.com/p/canviz/issues/detail?id=62
Not Firefox-specific; probably affects all browsers.
this isn't specific to FF. It occurs in all webkit browsers as well.
The height needs to be set on the container in the draw method as follows:
Index: canviz.js
===================================================================
--- canviz.js (revision 284)
+++ canviz.js (working copy)
@@ -639,6 +639,7 @@
});
this.container.setStyle({
width: width + 'px'
+ height: height + 'px'
});
while (this.elements.firstChild) {
this.elements.removeChild(this.elements.firstChild);
Comment #3 on issue 62 by ryandesi...@gmail.com: Hello World example shows
canviz div doesn't properly unclear itself
http://code.google.com/p/canviz/issues/detail?id=62
Fixed in r292.