removed js console logging

This commit is contained in:
Radu Ioan Fericean
2012-03-26 22:19:08 +03:00
parent f5e3a8b6db
commit 2b421ec5eb

View File

@@ -125,8 +125,7 @@
update();
$("#rater-refresh").click(function(){
$.getJSON("/raters", function(raters){
$("tr", "#rater-table").remove()
console.log(raters);
$("tr", "#rater-table").remove()
for(var i=0; i<raters.length; i++){
$("#rater-table").append("<tr><td>" + raters[i] + "</td></tr>");
}