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); callback(data);
}) })
.fail(function(xhr) { .fail(function(xhr) {
console.log(xhr);
if (xhr.status == 401) { if (xhr.status == 401) {
c.flash('fail', 'Wrong password'); c.flash('fail', 'Wrong password');
} else if (typeof xhr.responseJSON !== 'undefined') { } else if (typeof xhr.responseJSON !== 'undefined') {
@ -159,7 +158,6 @@ app = Sammy('#main', function (sam) {
.done(function(data) { .done(function(data) {
loaded = true; loaded = true;
$('div.loader-content').remove(); $('div.loader-content').remove();
console.log(data);
}); });
}, },