Skip to content

Commit

Permalink
Merge pull request #149 from oat-sa/feature/ADF-1579/update-lodash-to-4
Browse files Browse the repository at this point in the history
chore: update methods to lodash 4 version
  • Loading branch information
wazelin authored Feb 1, 2024
2 parents dbda3e7 + 0d03f4b commit b35dc63
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"minimum-stability" : "dev",
"require": {
"oat-sa/oatbox-extension-installer": "~1.1||dev-master",
"oat-sa/tao-core" : ">=50.24.6",
"oat-sa/tao-core" : ">=54.0.0",
"oat-sa/generis" : ">=15.22",
"oat-sa/extension-tao-testqti" : ">=41.0.0",
"oat-sa/extension-tao-itemqti-pci" : ">=7.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ define([
$form = self.widget.$form,
interaction = self.widget.element,
properties = interaction.properties,
pageIds = _.pluck(properties.pages, 'id'),
pageIds = _.map(properties.pages, 'id'),
maxPageId = Math.max.apply(null, pageIds),
tooltipBuffer;

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ define([
$form = self.widget.$form,
interaction = self.widget.element,
properties = interaction.properties,
pageIds = _.pluck(properties.pages, 'id'),
pageIds = _.map(properties.pages, 'id'),
maxPageId = Math.max.apply(null, pageIds),
tooltipBuffer;

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit b35dc63

Please sign in to comment.