Skip to content

Commit 7bfc174

Browse files
author
Ihor Melnychenko
committed
MAGETWO-38867: Create mixin for declarative widget description
1 parent f24dace commit 7bfc174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/web/mage/apply/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ define([
4242
var configStack = {},
4343
element = itemContainer.el;
4444

45-
_.each(mixinList, function (mixin, componentName) {
45+
_.each(mixinList, function (mixinArray, componentName) {
4646
configStack = itemContainer.data[componentName];
47-
require(mixin, function(){
47+
require(mixinArray, function(){
4848
for (var i = 0, len = arguments.length; i < len; i++){
4949
configStack = arguments[i](configStack, element);
5050
}

0 commit comments

Comments
 (0)