Remove console.log

This commit is contained in:
opi 2014-03-03 13:17:59 +01:00
parent ffd2a4967a
commit 4b8bcd669f

View file

@ -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);
});
},