vumix/commit

remove console.log

authorMichiel Hildebrand
Thu Mar 22 16:29:31 2012 +0100
committerMichiel Hildebrand
Thu Mar 22 16:29:31 2012 +0100
commitbc00898f83a594caf1e594b54d29eb274b909b98
tree094e7a4f62cdbfaf8c3ccaa429af456c27b7944f
parenteb95dc753e220dea38db97c99abf6d58b580a573
Diff style: patch stat
diff --git a/web/js/textedit.js b/web/js/textedit.js
index c111017..3b08692 100644
--- a/web/js/textedit.js
+++ b/web/js/textedit.js
@@ -56,7 +56,6 @@ YUI.add('textedit', function(Y) {
 		},
 		
 		_setText : function(e) {
-			console.log(e);
 			var host = this.get("host"),
 				text = e.newVal;
 			if(text) {
@@ -96,7 +95,6 @@ YUI.add('textedit', function(Y) {
 					data:data,
 					on:{success: function(e,o) { 
 						var r = Y.JSON.parse(o.responseText);
-						console.log(r.annotation);
 						oSelf.set("annotation", r.annotation);
 						oSelf.set("text", newText) }
 					}