Skip to content
This repository has been archived by the owner on Jun 10, 2018. It is now read-only.

Commit

Permalink
Don't log parse errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sstephenson committed Sep 26, 2010
1 parent b7d6896 commit 42e0e40
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
div.container.output textarea {
height: 220px;
margin-bottom: 6px;
}
}

div.container div.error {
display: none;
Expand Down Expand Up @@ -120,7 +120,6 @@
} catch (e) {
outputContainer.className = "container output error";
outputContainer.title = e.toString();
console.error(e);
}
};

Expand All @@ -131,7 +130,7 @@
window.onload = function() {
sourceElement.focus();
compile();
}
};
})();
</script>
</body>
Expand Down

0 comments on commit 42e0e40

Please sign in to comment.