Remove console.log

merge-requests/1/head
Mike Koch 8 years ago
parent e7107996eb
commit fe42a83100

@ -147,7 +147,7 @@ function buildEvent(id, dbObject) {
}; };
} }
var data = { return {
id: id, id: id,
title: dbObject.title, title: dbObject.title,
allDay: dbObject.allDay, allDay: dbObject.allDay,
@ -164,8 +164,6 @@ function buildEvent(id, dbObject) {
reminderValue: dbObject.reminderValue == null ? '' : dbObject.reminderValue, reminderValue: dbObject.reminderValue == null ? '' : dbObject.reminderValue,
reminderUnits: dbObject.reminderUnits reminderUnits: dbObject.reminderUnits
}; };
console.log(data);
return data;
} }
function calculateTextColor(color) { function calculateTextColor(color) {

Loading…
Cancel
Save