In 1.1 event.reset always reverted event.(), event.v(), and event.c() to there initial values.
In 1.2 it is now possible to reset each individually with event.m().reset(), event.v().reset() and event.c().reset()
Here are a couple notes :
All resets() are chainable on the event. So event.c() returns the string id of the current controller, but event.c().reset() resets c internally and returns the event so you can do simple things like
//reset the model and start adding new information
event.m().reset().m({
abc:123
//whatever new data
}).render();
Does this seem like a reasonable approach?
--
Christopher Thatcher