diff mquery.js @ 113:c0bfff39abe3

Basic in and out navigation support added to funcall expressions. Added toHTML methods to listlit and arraylit.
author Mike Pavone <pavone@retrodev.com>
date Sun, 14 Apr 2013 23:09:46 -0700
parents d715fb3c39ab
children
line wrap: on
line diff
--- a/mquery.js	Sun Apr 14 18:16:03 2013 -0700
+++ b/mquery.js	Sun Apr 14 23:09:46 2013 -0700
@@ -115,7 +115,6 @@
 
 function newEl(tagname, props)
 {
-	console.log('tagname:', tagname, 'props:', props);
 	var el = document.createElement(tagname);
 	if (typeof props == 'object') {
 		each(props, function (key, val) {