diff --git a/js/app.js b/js/app.js index f89a268f..c2a637c2 100644 --- a/js/app.js +++ b/js/app.js @@ -126,7 +126,6 @@ app = Sammy('#main', function (sam) { callback(data); }) .fail(function(xhr) { - console.log(xhr); if (xhr.status == 401) { c.flash('fail', 'Wrong password'); } else if (typeof xhr.responseJSON !== 'undefined') { @@ -159,7 +158,6 @@ app = Sammy('#main', function (sam) { .done(function(data) { loaded = true; $('div.loader-content').remove(); - console.log(data); }); },