Issue 1345: Return the event after the renderEvent
Status:  WontFix
Owner: ----
Closed:  Aug 2013
Reported by thedestr...@gmail.com, Mar 21, 2012
It will be nice if the method "renderEvent" return the event who is created/updated.

I added in the function renderEvent the return statement and it's work.

function renderEvent(event, stick) {
    normalizeEvent(event);
    if (!event.source) {
        if (stick) {
            stickySource.events.push(event);
            event.source = stickySource;
        }
        cache.push(event);
    }
    reportEvents(cache);

    return event;
}

Aug 15, 2013
Project Member #1 adamrs...@gmail.com
event "rendering" should stay separate from anything related to the event's data. this modification should probably be done somewhere else. Also, the return value from `eventRender` is already used to return an element, which will replace the default.
Status: WontFix