We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847272a commit 2222448Copy full SHA for 2222448
public/js/index.js
@@ -1886,14 +1886,14 @@ function initFilterBranchTagDropdown(selector) {
1886
}
1887
return null;
1888
},
1889
- getSelectedIndexInFiltered() {
+ getSelectedIndexInFiltered: function() {
1890
for (var i = 0, j = this.filteredItems.length; i < j; ++i) {
1891
if (this.filteredItems[i].selected)
1892
return i;
1893
1894
return -1;
1895
1896
- scrollToActive() {
+ scrollToActive: function() {
1897
var el = this.$refs['listItem' + this.active];
1898
if (!el || el.length === 0) {
1899
return;
0 commit comments