Commit 86f03e17 authored by Alfredo Sumaran's avatar Alfredo Sumaran Committed by Bryce

Allow passing an index to selectRowAtIndex

parent 59632639
......@@ -616,9 +616,14 @@
return this.dropdown.before($input);
};
GitLabDropdown.prototype.selectRowAtIndex = function() {
GitLabDropdown.prototype.selectRowAtIndex = function(index) {
var $el, selector;
selector = ".dropdown-content .is-focused";
// If we pass an option index
if (typeof index !== "undefined") {
selector = SELECTABLE_CLASSES + ":eq(" + index + ") a";
} else {
selector = ".dropdown-content .is-focused";
}
if (this.dropdown.find(".dropdown-toggle-page").length) {
selector = ".dropdown-page-one " + selector;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment