File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,17 +35,17 @@ define([
35
35
/**
36
36
* Initializes mixins assigned to a specfied component.
37
37
*
38
- * @param {Object } mixins - object contains mixins list.
38
+ * @param {Object } mixinList - object contains mixins list.
39
39
* @param {Object } itemContainer - object with component config and DOM element link.
40
40
*/
41
- function initMixins ( mixins , itemContainer ) {
41
+ function initMixins ( mixinList , itemContainer ) {
42
42
var configStack = { } ,
43
43
element = itemContainer . el ;
44
44
45
- _ . each ( mixins , function ( mixin , componentName ) {
45
+ _ . each ( mixinList , function ( mixin , componentName ) {
46
46
configStack = itemContainer . data [ componentName ] ;
47
47
require ( mixin , function ( ) {
48
- for ( var i = 0 , l = arguments . length ; i < l ; i ++ ) {
48
+ for ( var i = 0 , len = arguments . length ; i < len ; i ++ ) {
49
49
configStack = arguments [ i ] ( configStack , element ) ;
50
50
}
51
51
You can’t perform that action at this time.
0 commit comments