Added the 'eventTransform' option to allow event transformations coming from a JSON event source.

This commit is contained in:
Joe Esposito
2013-03-03 19:06:46 -08:00
committed by Adam Shaw
parent 45e08d13ac
commit d7786d4ca6
+4 -1
View File
@@ -122,6 +122,7 @@ function EventManager(options, _sources) {
}
}else{
var url = source.url;
var eventTransform = source.eventTransform || options.eventTransform;
if (url) {
var success = source.success;
var error = source.error;
@@ -144,7 +145,9 @@ function EventManager(options, _sources) {
if ($.isArray(res)) {
events = res;
}
callback(events);
callback(events && eventTransform
? $.map(events, eventTransform)
: events);
},
error: function() {
applyAll(error, this, arguments);