Drop console outputs from js

This commit is contained in:
KalabiYau 2014-07-04 22:38:07 +02:00 committed by Artem Chernikov
parent 59b83ceeb4
commit ce3b733039

View file

@ -180,10 +180,8 @@ function word_count(text, divId, maxcount) {
$('#' + divId).text(r);
if (r > maxcount) {
console.log("R is greater than maxcount");
$('#' + divId).css('color', 'red');
} else {
console.log("R is less than maxcount");
$('#' + divId).css('color', '#333');
}
};