diff jsbackend.js @ 9:37d7f60a8ea1

Allow use of tabletproglang programs in script tags
author Mike Pavone <pavone@retrodev.com>
date Wed, 21 Mar 2012 21:15:32 -0700
parents 04ae32e91598
children 02b20292f187
line wrap: on
line diff
--- a/jsbackend.js	Wed Mar 21 20:33:39 2012 -0700
+++ b/jsbackend.js	Wed Mar 21 21:15:32 2012 -0700
@@ -46,7 +46,6 @@
 }
 
 strlit.prototype.toJS = function(symbols) {
-	console.log('string:', this.val);
 	return '"' + this.val.replace('\\', '\\\\').replace('"', '\\"').replace('\n', '\\n').replace('\r', '\\r') + '"';
 }