Skip to content

Commit

Permalink
Follow up to #3372: fix oversight in refactor (#3387)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert authored May 10, 2021
1 parent 8d40b3a commit 383fa6c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions inst/www/shared/shiny.js

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

4 changes: 2 additions & 2 deletions inst/www/shared/shiny.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion inst/www/shared/shiny.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions inst/www/shared/shiny.min.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions srcts/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1260,9 +1260,9 @@ function main(): void {
const $dropdownTabset = $aTag.find("+ ul.dropdown-menu");
const dropdownId = $dropdownTabset.attr("data-tabsetid");

const $dropdownLiTags = $dropdownTabset.find("a[data-toggle='tab']");

parent("li");
const $dropdownLiTags = $dropdownTabset
.find("a[data-toggle='tab']")
.parent("li");

$dropdownLiTags.each(function (i, el) {
$liTags.push($(el));
Expand Down

0 comments on commit 383fa6c

Please sign in to comment.