From 4b8bcd669f613bb98ffe4417f1806d5cd5206910 Mon Sep 17 00:00:00 2001 From: opi Date: Mon, 3 Mar 2014 13:17:59 +0100 Subject: [PATCH] Remove console.log --- js/app.js | 2 -- 1 file changed, 2 deletions(-) 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); }); },