Skip to content

Commit

Permalink
Update src/qtiItem/core/Element.js
Browse files Browse the repository at this point in the history
Co-authored-by: Kirill Sedunov <[email protected]>
Signed-off-by: shaveko <[email protected]>
  • Loading branch information
shaveko and yukipastelcat authored Oct 13, 2023
1 parent 5c27109 commit 75bec5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qtiItem/core/Element.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ var Element = Class.extend({
if (Element.isA(v, '_container')) {
append(v);
} else if (_.isArray(v)) {
_.each(v, function (v) {
_.forEach(v, function (v) {
if (Element.isA(v, '_container')) {
append(v);
}
Expand Down

0 comments on commit 75bec5d

Please sign in to comment.