Skip to content

Commit c9fb64e

Browse files
author
Stanislav Idolov
authored
ENGCOM-2590: [Forwardport] Update template.js #17201
2 parents 0ab9e93 + 483b835 commit c9fb64e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/web/mage/utils/template.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ define([
77
'underscore',
88
'mage/utils/objects',
99
'mage/utils/strings'
10-
], function (jQuery, _, utils, stringUtils) {
10+
], function ($, _, utils, stringUtils) {
1111
'use strict';
1212

1313
var tmplSettings = _.templateSettings,
@@ -176,7 +176,7 @@ define([
176176

177177
if (isTemplate(value)) {
178178
list[key] = render(value, tmpl, castString);
179-
} else if (jQuery.isPlainObject(value) || Array.isArray(value)) {
179+
} else if ($.isPlainObject(value) || Array.isArray(value)) {
180180
_.each(value, iterate);
181181
}
182182
});

0 commit comments

Comments
 (0)