Remove console.log

This commit is contained in:
Calvin Montgomery 2014-12-28 19:09:41 -05:00
parent 058b24323d
commit 4319111f47
2 changed files with 0 additions and 2 deletions

View file

@ -630,7 +630,6 @@ $("#cs-chatfilters-newsubmit").click(function () {
});
socket.once("addFilterSuccess", function () {
console.log("addFilterSuccess");
$("#cs-chatfilters-newname").val("");
$("#cs-chatfilters-newregex").val("");
$("#cs-chatfilters-newflags").val("");

View file

@ -2307,7 +2307,6 @@ function formatCSChatFilterList() {
socket.emit("updateFilter", f);
socket.once("updateFilterSuccess", function () {
console.log("updateFilterSuccess");
reset();
});
});