_docs-v4/event-dragging-resizing/eventResize.md
Triggered when resizing stops and the event has changed in duration.
<div class='spec' markdown='1'> function( *eventResizeInfo* ) { } </div>eventResizeInfo is a plain object with the following properties:
Here is an example demonstrating most of these properties:
var calendar = new Calendar(calendarEl, {
events: [
// events here
],
editable: true,
eventResize: function(info) {
alert(info.event.title + " end is now " + info.event.end.toISOString());
if (!confirm("is this okay?")) {
info.revert();
}
}
});