if (!CRM.Designer) CRM.Designer = {};
/**
- * When rendering a template with Marionette.ItemView, the list of variables is determined by
+ * When rendering a template with Backbone.Marionette.ItemView, the list of variables is determined by
* serializeData(). The normal behavior is to map each property of this.model to a template
* variable.
*
* @return {*}
*/
var extendedSerializeData = function() {
- var result = Marionette.ItemView.prototype.serializeData.apply(this);
+ var result = Backbone.Marionette.ItemView.prototype.serializeData.apply(this);
result._view = this;
result._model = this.model;
result._collection = this.collection;