dev/core#1090 Update extendedSerializeData to use the Backbone namespace to fix an...
authorSeamus Lee <seamuslee001@gmail.com>
Thu, 16 Jul 2020 00:20:28 +0000 (10:20 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Thu, 16 Jul 2020 00:20:28 +0000 (10:20 +1000)
js/view/crm.designer.js

index b00a2964f15670b57c4f876311e4e93f620884ce..58b0446ecb379e7a166bc5d574e6b4081c7f77a2 100644 (file)
@@ -2,7 +2,7 @@
   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.
    *
@@ -14,7 +14,7 @@
    * @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;