Parcourir la Source

print less debugging info.

Lucas Stadler 11 ans auparavant
Parent
commit
1cb0223bde
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      js/babl/public/index.html

+ 1 - 2
js/babl/public/index.html

@ -108,7 +108,6 @@
108 108
				re: /^(\*\*?|__?)([^\s]+)\1$/,
109 109
				fn: function(match) {
110 110
					var highlight = {"*": "em", "**": "strong", "_": "em", "__": "strong"};
111
					console.log(match.toString());
112 111
					var el = document.createElement(highlight[match[1]]);
113 112
					el.textContent = match[2];
114 113
					return el;
@ -146,7 +145,7 @@
146 145
						displayMessage(msg);
147 146
						break;
148 147
					default:
149
						console.warn("unkown message type: " + msg.type, msg);
148
						break;
150 149
				}
151 150
			}
152 151