How to update a function in a mixin that was defined outside a return?
In lib/web/mage/gallery/gallery.js L:22 I want to update this function: var getMainImageIndex = function (data) { var mainIndex; if (_.every(data, function (item) { return _.isObject(item); }) ) { mainIndex = _.findIndex(data, function (item) { return item.isMain; }); } return mainIndex >… Read More »How to update a function in a mixin that was defined outside a return?