bug identified: structures need to use a span instead of a div
This commit is contained in:
parent
e2869e744e
commit
baf58fcbbe
|
@ -7,4 +7,5 @@
|
|||
|
||||
|
||||
(color 3 4 5 0)
|
||||
1
|
||||
(make-color 3 5 7 0)
|
|
@ -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++) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user