bug identified: structures need to use a span instead of a div

This commit is contained in:
Danny Yoo 2011-07-06 20:56:51 -04:00
parent e2869e744e
commit baf58fcbbe
2 changed files with 2 additions and 1 deletions

View File

@ -7,4 +7,5 @@
(color 3 4 5 0)
1
(make-color 3 5 7 0)

View File

@ -165,7 +165,7 @@
Struct.prototype.toDomNode = function(params) {
params.put(this, true);
var node = document.createElement("div");
var node = document.createElement("span");
$(node).append(document.createTextNode("("));
$(node).append(document.createTextNode(this._constructorName));
for(var i = 0; i < this._fields.length; i++) {