1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 01:20:30 +00:00

Removed extraneous debugging code

This commit is contained in:
Jeremy Ruston 2013-03-08 17:50:40 +00:00
parent e0f342a62e
commit 7d589b4b27

View File

@ -105,7 +105,6 @@ exports.startup = function() {
var styleNode = document.createElement("style"); var styleNode = document.createElement("style");
styleNode.type = "text/css"; styleNode.type = "text/css";
var text = renderTree.render("text/plain"); var text = renderTree.render("text/plain");
console.log(text)
styleNode.appendChild(document.createTextNode(text)); styleNode.appendChild(document.createTextNode(text));
document.getElementsByTagName("head")[0].appendChild(styleNode); document.getElementsByTagName("head")[0].appendChild(styleNode);
}); });