Skip to content

Commit

Permalink
Merge pull request #2211 from IgniteUI/dkamburov/fix-274807
Browse files Browse the repository at this point in the history
chore(loader): fix reference to infragistics.ext_collectionsExtended.js
  • Loading branch information
dkamburov authored Nov 28, 2022
2 parents 8eaa8f6 + 99c83b2 commit 423d6f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/infragistics.loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ $.ig.dependencies = [
group: $.ig.loaderClass.locale.dvGroup,
dependency: [ { name: "_ig_ext_collections" } ],
internal: true,
scripts: [ "$path$/modules/infragistics.ext_collectionsextended.js" ]
scripts: [ "$path$/modules/infragistics.ext_collectionsExtended.js" ]
},
{
widget: "_ig_ext_text",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/videoplayer/videoplayer-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ QUnit.test('Test seeking, ended and duration methods return correct values test

video.data('igVideoPlayer').play().then(() => {
assert.equal(video.igVideoPlayer("seeking"), false);
assert.equal(video.igVideoPlayer("duration"), 111.745);
assert.equal(video.igVideoPlayer("duration").toFixed(3), 111.745);

var ended = video.igVideoPlayer("ended");
assert.notOk(ended);
Expand Down

0 comments on commit 423d6f2

Please sign in to comment.