Issue #1832872 follow-up by dawehner: Fixed JS bug in Views UI.
parent
5e63f15e35
commit
4fff39498a
|
@ -345,7 +345,7 @@ Drupal.viewsUi.OptionsSearch = function ($form) {
|
||||||
|
|
||||||
this.$form = $form;
|
this.$form = $form;
|
||||||
// Add a keyup handler to the search box.
|
// Add a keyup handler to the search box.
|
||||||
this.$searchBox = this.$form.find('#edit-override-controls-options-search');
|
this.$searchBox = this.$form.find('#edit-options-search');
|
||||||
this.$searchBox.keyup(jQuery.proxy(this.handleKeyup, this));
|
this.$searchBox.keyup(jQuery.proxy(this.handleKeyup, this));
|
||||||
// Get a list of option labels and their corresponding divs and maintain it
|
// Get a list of option labels and their corresponding divs and maintain it
|
||||||
// in memory, so we have as little overhead as possible at keyup time.
|
// in memory, so we have as little overhead as possible at keyup time.
|
||||||
|
|
Loading…
Reference in New Issue