# HG changeset patch # User Mike Pavone # Date 1375895335 25200 # Node ID a503a329acfa4a36f08b87c4932cc69712394c0e # Parent 8285784f5ff59a3afbd1de1a574855ddbcce76d6 Fix CSS clasnames for list and array literals diff -r 8285784f5ff5 -r a503a329acfa editor.js --- a/editor.js Wed Aug 07 10:01:28 2013 -0700 +++ b/editor.js Wed Aug 07 10:08:55 2013 -0700 @@ -212,7 +212,7 @@ listlit.prototype.toHTML = function(node, up) { this.up = up; this.domNode = newEl('span', { - className: 'list', + className: 'listlit', }); for (var i = 0; i < this.val.length; i++) { this.val[i].toHTML(this.domNode, this); @@ -249,7 +249,7 @@ arraylit.prototype.toHTML = function(node, up) { this.up = up; this.domNode = newEl('span', { - className: 'array', + className: 'arraylit', }); for (var i = 0; i < this.val.length; i++) { this.val[i].toHTML(this.domNode, this);