Remove console.log

This commit is contained in:
Mike Koch 2016-03-09 22:01:10 -05:00
parent e7107996eb
commit fe42a83100

View File

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