changeset 132:a503a329acfa

Fix CSS clasnames for list and array literals
author Mike Pavone <pavone@retrodev.com>
date Wed, 07 Aug 2013 10:08:55 -0700
parents 8285784f5ff5
children 966a09d226e3
files editor.js
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);