Skip to content

Commit

Permalink
Merge pull request #2070 from IgniteUI/dependabot/npm_and_yarn/jquery…
Browse files Browse the repository at this point in the history
…-3.5.0

chore(deps): bump jquery from 3.4.1 to 3.5.0
  • Loading branch information
kdinev authored May 8, 2020
2 parents 3713689 + 5c44c45 commit 3fa4abe
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
19 changes: 12 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"postinstall": "npm install -g grunt-cli"
},
"dependencies": {
"jquery": "^3.4.1",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/tilemanager/layoutmanager/layoutmanager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ QUnit.test('[ID3] igLayoutManager flow layout', function (assert) {
assert.notOk(layoutManagerElement.hasClass('ig-layout'), 'The ig-layout class was not removed on destroy,');
assert.notOk(layoutManagerElement.hasClass('ig-layout-flow'), 'The ig-layout class was not removed on destroy,');
assert.equal(layoutManagerElement.children().length, 0, 'The items were not correctly cleared on destroy.');
layoutManagerElement.append('<div /><div /><div /><div /><div /><div />').igLayoutManager({
layoutManagerElement.append('<div></div><div></div><div></div><div></div><div></div><div></div>').igLayoutManager({
layoutMode: "flow"
});
assert.equal(layoutManagerElement.children().length, 6, 'The five items were not rendered in the flow container.');
Expand Down Expand Up @@ -351,7 +351,7 @@ QUnit.test('[ID4] igLayoutManager vertical layout', function (assert) {
assert.notOk(layoutManagerElement.hasClass('ig-layout'), 'The ig-layout class was not removed on destroy,');
assert.notOk(layoutManagerElement.hasClass('ig-layout-vertical'), 'The ig-layout class was not removed on destroy,');
assert.equal(layoutManagerElement.children().length, 0, 'The items were not correctly cleared on destroy.');
layoutManagerElement.append('<div /><div /><div /><div /><div /><div />').igLayoutManager({
layoutManagerElement.append('<div></div><div></div><div></div><div></div><div></div><div></div>').igLayoutManager({
layoutMode: "vertical"
});
assert.equal(layoutManagerElement.children().length, 6, 'The five items were not rendered in the vertical container.');
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/videoplayer/videoplayer-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
}(jQuery));

function createFixtureDiv(divId){
$.ig.TestUtil.appendToFixture('<div id=' + divId + '/>');
$.ig.TestUtil.appendToFixture('<div id=' + divId + '></div>');
}

function createFixtureVideo(videoId) {
$.ig.TestUtil.appendToFixture(`<video id=${videoId}/>`);
$.ig.TestUtil.appendToFixture(`<video id=${videoId}></video>`);
}

// #player1 and #player2 with isAutoPlay and isMuted set to true
Expand Down

0 comments on commit 3fa4abe

Please sign in to comment.