Skip to content

Commit

Permalink
branding: upgrade jquery to 3.6.0
Browse files Browse the repository at this point in the history
  - Upgrade bundled jquery from 3.4.1 to 3.6.0

  - In file `html-console-common.js`, remove an unused jQuery
    helper function

Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1834665
Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1852330
  • Loading branch information
sjd78 authored and sgratch committed Jul 12, 2022
1 parent af4ac85 commit 841eed7
Show file tree
Hide file tree
Showing 9 changed files with 1,681 additions and 1,120 deletions.
Expand Up @@ -45,15 +45,3 @@ function checkConnection(url, onSuccess, onFail) {
onFail();
};
}

/**
* @param {Array<string>} bullets
* @return {jQuery} `ul` list
*/
function toBulletList(bullets) {
var ul = $('<ul>');
bullets.forEach(function (bullet) {
ul.append('<li>' + bullet + '</li>');
});
return ul;
}

0 comments on commit 841eed7

Please sign in to comment.