Skip to content

Commit 980296d

Browse files
committed
Cleanup
1 parent c057bba commit 980296d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

inst/www/shared/shiny.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/www/shared/shiny.min.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

srcts/src/bindings/input/selectInput.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function getLabelNode(el: SelectHTMLElement): JQuery<HTMLElement> {
3838
}
3939
// Return true if it's a selectize input, false if it's a regular select input.
4040

41-
function isSelectize(el: SelectHTMLElement): boolean {
41+
function isSelectize(el: HTMLElement): boolean {
4242
const config = $(el)
4343
.parent()
4444
.find('script[data-for="' + $escape(el.id) + '"]');
@@ -133,7 +133,6 @@ class SelectInputBinding extends InputBinding {
133133
.parent()
134134
.find('script[data-for="' + $escape(el.id) + '"]')
135135
.replaceWith(data.config!);
136-
137136
this._selectize(el, true);
138137
}
139138

0 commit comments

Comments
 (0)